From: pascale.noyret Date: Wed, 22 Jun 2016 07:20:52 +0000 (+0200) Subject: 22-06 X-Git-Tag: V8_1_0~23 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=98a3a33eddf3c3d16893e0846907c8d845558765;p=tools%2Feficas.git 22-06 --- diff --git a/InterfaceQT4/browser.py b/InterfaceQT4/browser.py index da5936ad..61f56b35 100644 --- a/InterfaceQT4/browser.py +++ b/InterfaceQT4/browser.py @@ -322,6 +322,7 @@ class JDCNode(QTreeWidgetItem,GereRegles): def affichePanneau(self) : #print " affichePanneau " , self.item.nom + #print self.fenetre #if self.item.isactif(): #if self.editor.code == 'ASTER' and not(self.item.isactif()) : # posera des pb si un code decide d appeler FIN un mot clef diff --git a/InterfaceQT4/editor.py b/InterfaceQT4/editor.py index 5516ae55..512a9316 100755 --- a/InterfaceQT4/editor.py +++ b/InterfaceQT4/editor.py @@ -109,6 +109,7 @@ class JDCEditor(Ui_baseWidget,QWidget): if not hasattr ( self.appliEficas, 'readercata') or self.appliEficas.multi==True: self.readercata = readercata.READERCATA( self, self.appliEficas ) self.appliEficas.readercata=self.readercata + self.appliEficas.code=self.code else : self.readercata=self.appliEficas.readercata if self.readercata.fic_cata == None : return #Sortie Salome diff --git a/InterfaceQT4/gereIcones.py b/InterfaceQT4/gereIcones.py index 80316865..5cc481b2 100644 --- a/InterfaceQT4/gereIcones.py +++ b/InterfaceQT4/gereIcones.py @@ -166,8 +166,11 @@ class FacultatifOuOptionnel: def setRun(self): - if hasattr(self.editor.appliEficas, 'mesScripts'): - if hasattr(self.editor,'tree') and self.editor.tree.currentItem().item.get_nom() in self.appliEficas.mesScripts.dict_commandes.keys() : + + if hasattr(self.editor.appliEficas, 'mesScripts') : + if self.editor.code in self.editor.appliEficas.mesScripts.keys() : + self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes + if hasattr(self.editor,'tree') and self.editor.tree.currentItem() and self.editor.tree.currentItem().item and self.editor.tree.currentItem().item.get_nom() in self.dict_commandes_mesScripts.keys() : self.ajoutScript() return if hasattr(self,"RBRun"): self.RBRun.close() @@ -202,53 +205,28 @@ class FacultatifOuOptionnel: def ajoutScript(self): - # cochon mais je n arrive pas a faire mieux avec le mecanisme de plugin - listeCommandes=self.appliEficas.mesScripts.dict_commandes[self.node.item.get_nom()] + self.dictCommandes={} + listeCommandes=self.dict_commandes_mesScripts[self.node.item.get_nom()] if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,) - numero=-1 + i=0 for commande in listeCommandes : - numero+=1 conditionSalome=commande[3] if (self.appliEficas.salome == 0 and conditionSalome == True): continue self.CBScripts.addItem(commande[1]) - #self.CBScripts.addItem(commande[1],QVariant((numero))) - return - if 1 : - label=commande[1] - tip=commande[5] - self.action=QAction(label,self.tree) - self.action.setStatusTip(tip) - if monEnvQT5 : - if numero==4: - self.action.triggered.connect(self.AppelleFonction4) - if numero==3: - self.action.triggered.connect(self.AppelleFonction3) - numero=4 - if numero==2: - self.action.triggered.connect(self.AppelleFonction2) - numero=3 - if numero==1: - self.action.triggered.connect(self.AppelleFonction1) - numero=2 - if numero==0: - self.action.triggered.connect(self.AppelleFonction0) - numero=1 - else: - if numero==4: - self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction4) - if numero==3: - self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction3) - numero=4 - if numero==2: - self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction2) - numero=3 - if numero==1: - self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction1) - numero=2 - if numero==0: - self.tree.connect(self.action,SIGNAL("triggered()"),self.AppelleFonction0) - numero=1 - self.menu.addAction(self.action) + self.dictCommandes[commande[1]]=i + i=i+1 + if monEnvQT5: + #self.CBScripts.currentIndexChanged.connect(self.choixSaisi) + self.CBScripts.activated.connect(self.choixSaisi) + else : + #self.connect(self.CBScripts,SIGNAL("currentIndexChanged(int)"),self.choixSaisi) + self.connect(self.CBScripts,SIGNAL("activated(int)"),self.choixSaisi) + + def choixSaisi(self): + fction=str(self.CBScripts.currentText()) + numero= self.dictCommandes[fction] + self.node.AppelleFonction(numero,nodeTraite=self.node) + #self.reaffiche() class ContientIcones: @@ -296,7 +274,7 @@ class ContientIcones: filters) if monEnvQT5 : fichier=fichier[0] - if not(fichier): + if not(fichier == ""): ulfile = os.path.abspath(unicode(fichier)) self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0] self.lineEditVal.setText(fichier) @@ -322,7 +300,8 @@ class ContientIcones: directory = self.appliEficas.CONFIGURATION.savedir, options = QFileDialog.ShowDirsOnly) - if not directory.isNull(): + if monEnvQT5 : directory=directory[0] + if not (directory == "") : absdir = os.path.abspath(unicode(directory)) self.appliEficas.CONFIGURATION.savedir = os.path.dirname(absdir) self.lineEditVal.setText(directory) @@ -354,7 +333,7 @@ class ContientIcones: if (isinstance(mc.type,types.TupleType) and len(mc.type) > 1 and "(*.med)" in mc.type[1] ): selection, commentaire = self.appliEficas.selectMeshFile(editor=self.editor) - print selection, commentaire + #print selection, commentaire if commentaire != "" : QMessageBox.warning( None, tr("Export Med vers Fichier "), diff --git a/InterfaceQT4/monViewRegles.py b/InterfaceQT4/monViewRegles.py index ca178b3a..3eda61ad 100644 --- a/InterfaceQT4/monViewRegles.py +++ b/InterfaceQT4/monViewRegles.py @@ -40,6 +40,10 @@ class ViewRegles(Ui_viewRegles,QDialog): def __init__(self,parent,liste,entete=None): QDialog.__init__(self,parent) self.setupUi(self) + self.setModal(False) + if monEnvQT5 : self.bclose.clicked.connect(self.close) + else : self.connect( self.bclose,SIGNAL("clicked()"), self, SLOT("close()") ) + if entete != None : self.setWindowTitle (entete) for ligne in liste : texte=ligne[0] diff --git a/InterfaceQT4/monWidgetPlusieursInto.py b/InterfaceQT4/monWidgetPlusieursInto.py index c3c01fb9..7f75a3ed 100644 --- a/InterfaceQT4/monWidgetPlusieursInto.py +++ b/InterfaceQT4/monWidgetPlusieursInto.py @@ -43,7 +43,6 @@ from gereListe import GereListe class MonWidgetPlusieursInto (Ui_WidgetPlusieursInto,Feuille,GerePlie,GereListe): def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande): - print "MonWidgetPlusieursInto", nom, self self.index=1 self.alpha=0 self.listeCB=[] diff --git a/InterfaceQT4/monWidgetPlusieursTuple.py b/InterfaceQT4/monWidgetPlusieursTuple.py index b2536bb4..94971e4c 100644 --- a/InterfaceQT4/monWidgetPlusieursTuple.py +++ b/InterfaceQT4/monWidgetPlusieursTuple.py @@ -147,7 +147,6 @@ class TupleCustom3(QWidget,Ui_Tuple3,TupleCustom): class MonWidgetPlusieursTuple(Feuille,GereListe): def __init__(self,node,monSimpDef,nom,objSimp,parentQt,commande): - print "MonWidgetPlusieursTuple" self.indexDernierLabel=0 self.nomLine="TupleVal" self.listeAffichageWidget=[] diff --git a/InterfaceQT4/qtEficas.py b/InterfaceQT4/qtEficas.py index fd35cd2f..afaa9d73 100755 --- a/InterfaceQT4/qtEficas.py +++ b/InterfaceQT4/qtEficas.py @@ -63,8 +63,10 @@ class Appli(Ui_Eficas,QMainWindow): if monEnvQT5 : self.recent = [] else : self.recent = QStringList() self.ficRecents={} + self.mesScripts={} self.listeAEnlever=[] self.ListeCode=['Aster','Carmel3D','Cuve2dg','Openturns_Study','Openturns_Wrapper','MAP','ZCracks', 'CarmelCND','MT','PSEN','PSEN_N1'] + self.ListePathCode=['Aster','Carmel3D','CarmelCND','MT','PSEN_Eficas','PSEN_N1'] self.repIcon=os.path.join( os.path.dirname(os.path.abspath(__file__)),'..','Editeur','icons') if self.salome: @@ -836,7 +838,7 @@ class Appli(Ui_Eficas,QMainWindow): self.viewmanager.newIncludeEditor() def cleanPath(self): - for pathCode in self.ListeCode: + for pathCode in self.ListePathCode: try: aEnlever=os.path.abspath(os.path.join(os.path.dirname(__file__),'..',pathCode)) sys.path.remove(aEnlever) diff --git a/InterfaceQT4/readercata.py b/InterfaceQT4/readercata.py index aa804fd4..9137cd3e 100644 --- a/InterfaceQT4/readercata.py +++ b/InterfaceQT4/readercata.py @@ -222,13 +222,13 @@ class READERCATA: self.appliEficas.rep_scripts=os.path.join(rep_cata,nom_cata) sys.path[:0] = [self.appliEficas.rep_scripts] try : - self.appliEficas.mesScripts=__import__(mesScriptsNomFichier) + self.appliEficas.mesScripts[self.code]=__import__(mesScriptsNomFichier) except: pass sys.path=sys.path[1:] else : try : - self.appliEficas.mesScripts=__import__(mesScriptsNomFichier) + self.appliEficas.mesScripts[self.code]=__import__(mesScriptsNomFichier) except: pass diff --git a/InterfaceQT4/typeNode.py b/InterfaceQT4/typeNode.py index bb413220..07ca9cac 100644 --- a/InterfaceQT4/typeNode.py +++ b/InterfaceQT4/typeNode.py @@ -67,13 +67,19 @@ class PopUpMenuNodeMinimal : #items du menu self.menu.addAction(self.Supprime) if hasattr(self.appliEficas, 'mesScripts'): - if self.tree.currentItem().item.get_nom() in self.appliEficas.mesScripts.dict_commandes.keys() : - self.ajoutScript() + if self.editor.code in self.editor.appliEficas.mesScripts.keys() : + self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes + if self.tree.currentItem().item.get_nom() in self.dict_commandes_mesScripts.keys() : + self.ajoutScript() def ajoutScript(self): # cochon mais je n arrive pas a faire mieux avec le mecanisme de plugin - listeCommandes=self.appliEficas.mesScripts.dict_commandes[self.tree.currentItem().item.get_nom()] + if hasattr(self.appliEficas, 'mesScripts'): + if self.editor.code in self.editor.appliEficas.mesScripts.keys() : + self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes + else : return + listeCommandes=self.dict_commandes_mesScripts[self.tree.currentItem().item.get_nom()] if type(listeCommandes) != types.TupleType: listeCommandes=(listeCommandes,) numero=0 for commande in listeCommandes : @@ -132,8 +138,14 @@ class PopUpMenuNodeMinimal : self.AppelleFonction(4) - def AppelleFonction(self,numero): - listeCommandes=self.appliEficas.mesScripts.dict_commandes[self.tree.currentItem().item.get_nom()] + def AppelleFonction(self,numero,nodeTraite=None): + if nodeTraite==None : nodeTraite=self.tree.currentItem() + nomCmd=nodeTraite.item.get_nom() + if hasattr(self.appliEficas, 'mesScripts'): + if self.editor.code in self.editor.appliEficas.mesScripts.keys() : + self.dict_commandes_mesScripts=self.appliEficas.mesScripts[self.editor.code].dict_commandes + else : return + listeCommandes=self.dict_commandes_mesScripts[nomCmd] commande=listeCommandes[numero] conditionValid=commande[4] if (self.tree.currentItem().item.isvalid() == 0 and conditionValid == True): @@ -145,13 +157,15 @@ class PopUpMenuNodeMinimal : listenomparam=commande[2] listeparam=[] for p in listenomparam: - if hasattr(self.tree.currentItem(),p): - listeparam.append(getattr(self.tree.currentItem(),p)) + if hasattr(nodeTraite,p): + listeparam.append(getattr(nodeTraite,p)) if p=="self" : listeparam.append(self) try : + #if 1 : fonction(listeparam,self.appliEficas) except : fonction(listeparam) + def createActionsQT4(self): diff --git a/UiQT4/desChoixCommandes.ui b/UiQT4/desChoixCommandes.ui index e8c99040..be67512d 100644 --- a/UiQT4/desChoixCommandes.ui +++ b/UiQT4/desChoixCommandes.ui @@ -32,16 +32,7 @@ 0 - - 2 - - - 2 - - - 2 - - + 2 @@ -74,15 +65,6 @@ QFrame::Raised - - 0 - - - 0 - - - 0 - @@ -322,9 +304,6 @@ border-radius : 12px - - QLayout::SetFixedSize - @@ -381,14 +360,27 @@ border-radius : 12px - 20 - 40 + 168 + 13 + + + + Qt::Horizontal + + + + 173 + 20 + + + + diff --git a/UiQT4/desViewRegles.ui b/UiQT4/desViewRegles.ui index 03938cd2..1742aa92 100644 --- a/UiQT4/desViewRegles.ui +++ b/UiQT4/desViewRegles.ui @@ -6,15 +6,22 @@ 0 0 - 411 - 322 + 283 + 250 Dialog - - + + + + + Fermer + + + + QFrame::NoFrame @@ -27,8 +34,8 @@ 0 0 - 393 - 304 + 265 + 194 @@ -45,6 +52,19 @@ + + + + Qt::Horizontal + + + + 171 + 20 + + + + diff --git a/UiQT4/desWidgetCommande.ui b/UiQT4/desWidgetCommande.ui index 6912bb56..0a1d990f 100644 --- a/UiQT4/desWidgetCommande.ui +++ b/UiQT4/desWidgetCommande.ui @@ -6,8 +6,8 @@ 0 0 - 1290 - 540 + 1353 + 596 @@ -36,16 +36,7 @@ font : 'times' 9px 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -77,168 +68,149 @@ font : 'times' 9px QFrame::Raised - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - - - - - 0 - 0 - - - - QFrame::Box - - - QFrame::Raised - - - - 0 - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 17 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Affiche le rapport de validité de la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/ast-green-ball.png../Editeur/icons/ast-green-ball.png - - - - 21 - 31 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 0 - 0 - - - - - 150 - 31 - - - - QFrame::NoFrame - - - QFrame::Raised - - - <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> - - - - - - - Qt::Horizontal - - - QSizePolicy::Maximum - - - - 2 - 40 - - - - - - - - - 0 - 0 - - - - Nom de l'objet. Seuls, les objets valides peuvent être nommés - - - QLineEdit { + + + + + + 0 + 0 + + + + QFrame::Box + + + QFrame::Raised + + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 17 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Affiche le rapport de validité de la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/ast-green-ball.png../Editeur/icons/ast-green-ball.png + + + + 21 + 31 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 0 + 0 + + + + + 150 + 31 + + + + QFrame::NoFrame + + + QFrame::Raised + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + + + Qt::Horizontal + + + QSizePolicy::Maximum + + + + 2 + 40 + + + + + + + + + 0 + 0 + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + QLineEdit { border: 2px solid gray; border-radius: 10px; padding: 0 8px; @@ -251,391 +223,402 @@ QLineEdit:disabled } /*read-only { background: lightblue;*/ - - - false - - - - - - - Qt::Horizontal - - - - 108 - 20 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Ignored - - - - 2 - 40 - - - - - - - - 4 - - - QLayout::SetFixedSize - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Lance un script associé à la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/roue.png../Editeur/icons/roue.png - - - - 21 - 31 - - - - - - - - true - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - ouvre un navigateur sur l'aide contextuelle - - - border : 0px - - - ... - - - - ../Editeur/icons/point-interrogation30.png../Editeur/icons/point-interrogation30.png - - - - 21 - 31 - - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - affiche les régles de validité - - - border : 0px - - - ... - - - - ../Editeur/icons/lettreRblanc30.png../Editeur/icons/lettreRblanc30.png - - - - 21 - 31 - - - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Détruit la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/deleteRond.png../Editeur/icons/deleteRond.png - - - - 21 - 31 - - - - - - RBValide - labelNomCommande - LENom - horizontalSpacer_3 - horizontalSpacer_4 - RBPoubelle - horizontalSpacer_5 - horizontalSpacer_7 - - - - - - TextLabel - - - - - - - - - 8 - - - 15 - - - - - - 0 - 0 - - - - - 160 - 31 - - - - Qt::ClickFocus - - - Affiche les commandes possibles - - - background-color:rgb(104,110,149); + + + false + + + + + + + Qt::Horizontal + + + + 108 + 20 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Ignored + + + + 2 + 40 + + + + + + + + 4 + + + QLayout::SetFixedSize + + + + + + 21 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Lance un script associé à la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/roue.png../Editeur/icons/roue.png + + + + 21 + 31 + + + + + + + + + 0 + 0 + + + + + 0 + 38 + + + + true + + + + + + + + 21 + 31 + + + + + 31 + 31 + + + + Qt::ClickFocus + + + ouvre un navigateur sur l'aide contextuelle + + + border : 0px + + + ... + + + + ../Editeur/icons/point-interrogation.png../Editeur/icons/point-interrogation.png + + + + 21 + 31 + + + + + + + + + 21 + 31 + + + + + 31 + 31 + + + + Qt::ClickFocus + + + affiche les régles de validité + + + border : 0px + + + ... + + + + ../Editeur/icons/lettreRblanc30.png../Editeur/icons/lettreRblanc30.png + + + + 21 + 31 + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 21 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Détruit la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/deleteRond.png../Editeur/icons/deleteRond.png + + + + 21 + 31 + + + + + + RBValide + labelNomCommande + LENom + horizontalSpacer_3 + horizontalSpacer_4 + RBPoubelle + horizontalSpacer_5 + horizontalSpacer_7 + + + + + + + 0 + 0 + + + + + 160 + 40 + + + + Qt::ClickFocus + + + Affiche les commandes possibles + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - &Commandes - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - - - - - 0 - 0 - - - - - 60 - 24 - - - - - 60 - 24 - - - - Qt::ClickFocus - - - Affiche le formulaire de la commande précédente - - - background-color:rgb(104,110,149); + + + &Commandes + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + TextLabel + + + + + + + + + + 0 + 0 + + + + + 60 + 24 + + + + + 60 + 24 + + + + Qt::ClickFocus + + + Affiche le formulaire de la commande précédente + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - << - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - - - 0 - 0 - - - - - 60 - 24 - - - - - 60 - 24 - - - - Qt::ClickFocus - - - Affiche le formulaire de la commande suivante - - - background-color:rgb(104,110,149); + + + << + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + + 0 + 0 + + + + + 60 + 24 + + + + + 60 + 24 + + + + Qt::ClickFocus + + + Affiche le formulaire de la commande suivante + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - >> - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - + + + >> + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + Qt::Vertical + + + + 20 + 18 + + + @@ -673,8 +656,8 @@ border-radius : 12px 0 0 - 1290 - 410 + 1353 + 466 diff --git a/UiQT4/eficas_en.0106.ts b/UiQT4/eficas_en.0106.ts new file mode 100644 index 00000000..e514c2ef --- /dev/null +++ b/UiQT4/eficas_en.0106.ts @@ -0,0 +1,3948 @@ + + + + @default + + + lecture du fichier impossible : + unable to read file : + + + + Impossible d'ouvrir le fichier %s + unable to open file %s + + + + Impossible de convertir le fichier Python qui doit contenir des erreurs. + + On retourne le fichier non converti. Prevenir la maintenance. + + %s + Unable to translate the file. it probably contains mistake +ask eficas team +%s + + + + Format de sortie : %s, non supporte + Unsupported format %s + + + + Impossible d'ouvrir le fichier : %s + unable to open file: %s + + + + Erreur ! Erreur ! + Error! + + + + Erreur rencontree dans recherche_enfants : %s + Error in recherche_enfants : %s + + + + Erreur dans la creation du mot-cle : %s + Error when creating %s + + + + Impossible d'ouvrir le fichier : %s + unable to open file : %s + + + + le texte a analyser n'est pas celui d'une commande ou d'un operateur : + text is no eficas text: + + + + Erreur dans la recherche du nom de la commande : + error when searching command's name : + + + + Erreur dans la recherche des args de la commande : + error when searching argument's command : + + + + Erreur dans la recherche du nom de la commande : + error when searching command's name : + + + + Erreur dans la recherche des args de la commande : + error when searching argument's command : + + + + %d n'est pas un index valide pour append_brother + %d is not a valid index for append-brother + + + + le fichier de commandes %s n'existe pas + commands file %s does not exist + + + + un fichier de commandes doit etre defini avant une poursuite %s + You have to define principal commands file before a secondary (poursuite) file %s + + + + le fichier poursuite %s n'existe pas + the secondary (poursuite) file does not exist + + + + include mal defini %s + include is not correct %s + + + + un fichier de commandes doit etre defini avant un include %s + You have to define principal commands file before include %s + + + + le fichier include %s n'existe pas + include file does not exist + + + + jdc %(v_1)s, le fichier + de commandes %(v_2)s n'existe pas + v_1 + jdc %(v_1)s : .comm %(v_2)s does not exist + + + + le fichier jdc %s n'existe pas + file %s does not exist + + + + jdc %s manque option jdc dans section jdc + jdc %s does not have jdc option in command line + + + + %(v_1)s include %(v_2)s : %(v_3)s + v_1 + %(v_1)s include %(v_2)s : %(v_3)s + + + + %(v_1)s fichier poursuite: %(v_2)s + v_1 + %(v_1)ssecondary (poursuite) file %(v_2)s + + + + nom etude : %s + study's name : %s + + + + utilisation : %prog [options] + use : %prog[options] + + + + nom du fichier de commandes + principal .comm file's name + + + + nom du fichier poursuite + secondary (poursuite) file's name + + + + numero d'unite suivi du nom du fichier include + unit number and include file's name + + + + fichier decrivant une etude + file containing a study + + + + version de catalogue a utiliser + catalog's version + + + + nom du code a utiliser + code's name + + + + niveau de debug + debug level + + + + schema + schema + + + + Nombre incorrect d'arguments + incorrect number of arguments + + + + Localisation specifiee pour l'application. + specified localization for the application. + + + + Impossible de transferer les fichiers requis dans : %s + unable to transfer files to : %s + + + + Erreur + error + + + + Erreurs fatales + fatale error + + + + Impossible reconstruire commande + + unable to construct command + + + + Objet commentaire non valorise + comment object has no value + + + + Debut Fonction %s + start function %s + + + + Fin Fonction %s + end function %s + + + + Nom de concept deja defini : %s + Concept's name %s is already existing + + + + Longueur incorrecte + incorrect length + + + + L'attribut 'min' doit etre un entier : + min must be an integer : + + + + L'attribut 'max' doit etre un entier : + max must be an integer : + + + + Nombres d'occurrence min et max invalides : + min and max are invalid: + + + + L'attribut 'fr' doit etre une chaine de caracteres + 'fr' must be a string + + + + L'attribut 'statut' doit valoir 'o','f','c' ou 'd' + values for statut arguments are : 'o','f','c' or 'd' + + + + L'attribut 'docu' doit etre une chaine de caracteres + docu must be a string + + + + Fin + end + + + + Le parametre EVAL %s ne peut valoir None + None is not a valid value for Eval parameter %s + + + + Pas de nom donne au parametre EVAL + No name for parameter EVAL + + + + Un nom de parametre ne peut depasser 8 caracteres + parameter's name can not exceed 8 characters + + + + Un concept de nom %s existe deja ! + Concept's name %s is already existing! + + + + ERREUR + ERROR + + + + Format pas implemente : %s + format : %s not implemented + + + + Type d'objet non prevu : %s + object type not expected : %s + + + + ce groupe de maillage %s est associe a au moins un materiau et au moins une source. + mesh group %s is associated with at least one material and at least a source. + + + + ce groupe de maillage %s n'est associe a aucun materiau ou source. + mesh group %s is associated with no material or no source. + + + + ATTENTION! Une source constante n'est possible qu'a frequence nulle en regime frequentiel + + + + + toutes les donnees ne sont pas connues + all data are not available + + + + Fichier patron %s n'existe pas. + pattern file %s does not exist. + + + + Pas supporte + not implemented + + + + Entite inconnue ou interdite :%s + Unknown or unsupported entity : %s + + + + Entite inconnue ou interdite :%s. Elle est ignoree + Unknown or unsupported entity : %s. ignored + + + + Les tuples ne sont pas supportes pour le format ini :%s + Tuple are not allowed for format ini : %s + + + + Type de valeur non supportee par le format ini :%(nom)s +%(exception)s + nom + Unsupported type of value for .ini format %(nom)s +%(exception)s + + + + Il y a un pb a la Creation du XML + problem when creating XML + + + + Il y a un pb a la Creation du STD + problem when creating STD + + + + Entite inconnue ou interdite : %s. Elle est ignoree + unkown ou unsupported entity : %s. ignored + + + + Tag %s non-defini. Ceci est un bogue interne. en informer les developpeurs. + Tag %s not defined. Ask developpeurs team. + + + + Le mot-cle %s est obligatoire. + mandatory keyword : %s. + + + + concept %(inst_name)s de type %(class_name)s + inst_name + concept %(inst_name)s of type %(class_name)s + + + + Un nom de concept doit etre un identificateur Python + concept's name must be a python identifier + + + + Concept existant + allready existing concept + + + + Operateur reentrant mais concept non existant + operator 'reentrant' but concept does not exist + + + + Operateur reentrant et concept existant trouve + Operator 're-entrant' and concept exists + + + + Concept deja existant et de mauvais type + already existing concept of not supported type + + + + Nommage du concept refuse : un concept de meme nom existe deja + Name is refused : already existing concept + + + + Nommage du concept effectue + Concept named + + + + Nommage impossible %s + unable to name %s + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese ouvrante manquante + formula expects a list of arguments : no left parenthesis + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese fermante manquante + formula expects a list of arguments : no right parenthes + + + + Pas de nom donne a la FORMULE + no name given + + + + Un nom de FORMULE ne peut depasser 8 caracteres + name too long (8 characters max) + + + + Un nom de FORMULE ne peut pas commencer par un chiffre + name does not begin with a figure + + + + Le type de la valeur retournee n'est pas specifie + no type is specified for the return value + + + + Une formule ne peut retourner une valeur de type : %s + impossible to return a value of type : %s + + + + Impossible d'ajouter la commande + unable to add the keyword (commande) + + + + Impossible d ajouter la commande + unable to add the keyword (commande) + + + + Pas implemente + not implemented + + + + Nom de concept deja defini + already defined concept + + + + Nom de concept deja defini : + already defined concept : + + + + Impossible de trouver le fichier correspondant a l'unite + unable to find file corresponding to unit + + + + n'est pas un fichier existant + is not an existing file + + + + Fichier invalide %s + invalid file %s + + + + Impossible de construire le jeu de commandes correspondant au fichier + unable to create the jdc corresponding to the file + + + + Erreur lors de l'evaluation du fichier inclus + Error when reading the 'include' file + + + + Ce fichier ne sera pas pris en compte + %s + the file is ignored +%s + + + + Ce fichier ne sera pas pris en compte +Le fichier associe n'est pas defini + the file is ignored : associated file is not defined + + + + Le fichier n est pas defini + file is not defined + + + + le fichier doit contenir une unique variable de sortie + file must declare a single output variable + + + + Fichier invalide + invalid file + + + + Le contenu de ce fichier ne sera pas pris en compte + %s + the file will be ignored : +%s + + + + Le fichier INCLUDE n est pas defini + include file is not defined + + + + Le contenu de ce fichier ne sera pas pris en compte + + file will be ignored + + + + + Erreur lors de l'evaluation du fichier poursuite + Error when creating secondary (poursuite) file + + + + L'objet %(v_1)s ne peut etre un fils de %(v_2)s + v_1 + Object %(v_1)s can not be a child for %(v_2)s + + + + L'objet %s ne peut pas etre repete + Object %s can not be repeated + + + + Erreur - mclist inexistante : %s + Error - mclist does not exist : %s + + + + Erreur - mot cle facteur de nom : %s + Error - keyword "mot-clef facteur" nammed : %s + + + + traitement non-prevu + unexpected task + + + + L'objet %s ne peut pas etre ajoute + Object %s cannot be add + + + + None n'est pas une valeur autorisee + None is not a valid value + + + + un concept de meme nom existe deja + concept already exists + + + + Concept cree + concept created + + + + La matrice n'est pas une matrice %(n_lign)d sur %(n_col)d + n_lign + matrix is not a %(n_lign)d x %(n_col)d matrix + + + + Decommenter + uncomment + + + + Decommente la commande + uncomment the command + + + + Impossible de supprimer un mot-cle obligatoire + mandatory keyword cannot be deleted + + + + Mot-cle %s supprime + Keyword %s deleted + + + + Pb interne : impossible de supprimer ce mot-cle + internal problem : unable to delete keyword + + + + Commentaire supprime + comment is deleted + + + + Commande %s supprimee + command %s is deleted + + + + Pb interne : impossible de supprimer cet objet + internal problem : unable to delete object + + + + Le fichier de commande n'a pas pu etre converti pour etre editable par Eficas + + + unable to convert .comm file in order to open it with Eficas + + + + Include vide + include file is empty + + + + L'include doit etre correctement initialise pour etre visualise + include file must be correct + + + + Impossible de supprimer ce mot-clef + unable to delete this keyword + + + + View3D + View3D + + + + affiche dans Geom les elements de structure + diplay SE in Geom + + + + Graphique + graphic + + + + affiche la distribution + display distribution + + + + Impossible de supprimer un mot-clef obligatoire + unable to delete a mandatory keyword + + + + Mot-clef %s supprime + Keyword %s is deleted + + + + Definition d'un parametre + defines a parameter + + + + Import du fichier de Configuration + import configuration file + + + + Erreur a la lecture du fichier de configuration %s + Error when reading configuration file + + + + Erreur fatale au chargement de %s + fatal error when loading %s + + + + Erreur fatale au chargement d'un fichier + Fatal error when loading file + + + + fichier modifie + file updated + + + + Attention! fichier change hors EFICAS + Warning ! this file was modified outside Eficas + + + + Type de fichier non reconnu + unsupported file type + + + + EFICAS ne sait pas ouvrir le type de fichier %s + Eficas is not able to open this file's type : %s + + + + EFICAS ne sait pas ouvrir ce type de fichier + Eficas is not able to open this file's type + + + + Copie impossible + unable to copy + + + + Veuillez selectionner un objet a copier + you have to select an object to copy + + + + Veuillez selectionner un seul objet : la copie se fera apres le noeud selectionne + You have to select a single object : copy will be done after the selected node + + + + Aucun Objet n a ete copie ou coupe + No object was cut or copied + + + + Copie refusee + rejected copy + + + + Eficas n a pas reussi a copier l objet + Eficas cannot copy this object + + + + Copie refusee pour ce type d objet + Copy rejected : bad object type + + + + Deplacement refuse + move rejected + + + + Deplacement refuse entre 2 fichiers. Seule la copie est autorisee + move rejected. no move between two files : only copy is available + + + + Copie impossible a cet endroit + unable to copy here + + + + Veuillez selectionner une commande, un parametre, un commentaire ou une macro + select a command; a parameter, a comment or a macro + + + + Choix d'un fichier XML + Choice of XML file + + + + Ouvrir Fichier + Open file + + + + Erreur a la generation + Error when generating + + + + EFICAS ne sait pas convertir ce JDC + Eficas is unable to convert JDC + + + + Format %s non reconnu + not supported format %s + + + + Execution impossible + Unable to execute + + + + le JDC doit etre valide pour une execution MAP + JDC has to be valid before run + + + + le JDC doit contenir un et un seul composant + JDC must contains a single componant + + + + sauvegarde + save + + + + Sauvegarde du Fichier + save file + + + + Le fichier <b>%s</b> existe deja. + file <b>%s</b> already exists. + + + + &Ecraser + &Replace + + + + Donnez le nom du fichier correspondant a l unite logique + Choose file corresponding to unit + + + + Choix d'un fichier de poursuite + Choose poursuite file + + + + Le fichier %s contient une commande POURSUITE + + file %s contains a POURSUITE command + + + + Traduire Fichier + file translation + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + JDC files(*.comm);; All FIles(*) + + + + Fichier Traduit : %s + + + Translated file : %s + + + + Pas de difference entre le fichier origine et le fichier traduit + No difference between the primary file and the translated file + + + + %d versions du catalogue sont disponibles + %d catalogs versions are available + + + + &Ok + &Ok + + + + Entrez + enter + + + + valeurs + values + + + + Entrez entre + enter between + + + + et + and + + + + Selection + selection + + + + Type de base inconnu + unkown type + + + + Visualisation Fichier + view file + + + + Impossibilite d'afficher le Fichier + Unable to display file + + + + Sauvegarder Fichier + save File + + + + Fichier selectionne + file selected + + + + expression valide + valid expression + + + + expression invalide + unvalid expression + + + + expression n est pas de la forme a+bj + expression is not as a+bj + + + + entrer une seule valeur SVP + Please, enter a single value + + + + saisir le type de complexe + choose complex's type + + + + Sauvegarder le fichier + save file + + + + Le fichier <b>%(v_1)s</b> n'a pu etre sauvegarde. <br>Raison : %(v_2)s + v_1 + file <b>%(v_1)s</b> was not saved. Raison : %(v_2)s + + + + &Recents + &Recently Opened + + + + Aide specifique + code's help + + + + Traduction + translation + + + + Options + Options + + + + TraduitV7V8 + + + + + TraduitV8V9 + + + + + TraduitV9V10 + + + + + Acquiert Groupe Maille + + + + + Specificites Maille + + + + + version + version + + + + pour + for + + + + Aide Indisponible + no help avalaible + + + + Parametrage + Options + + + + Veuillez d abord choisir un code + Choose a code + + + + Pas de possibilite de personnalisation de la configuration + no options avalaible for configuration + + + + &Effacer + &Delete + + + + Veuillez entrer le complexe sous forme aster ou sous forme python + enter a complex + + + + Import du catalogue + Loading catalog + + + + Pas de catalogue defini pour le code + No catalog for this code + + + + Aucun catalogue trouve + No catalog + + + + avec le catalogue + with catalog + + + + Impossible d'importer le catalogue + unable to load catalog + + + + Choix d une version du code + Choose a version for + + + + Choix d une version + choose a version + + + + Parametre + parameter + + + + Insere un parametre + insert a parameter + + + + item invalide + invalid item + + + + l item doit etre valide + item must be valid + + + + apres + after + + + + Insere un commentaire apres la commande + insert a comment after the command + + + + avant + before + + + + Insere un commentaire avant la commande + insert a comment before the command + + + + Insere un parametre apres la commande + insert a parameter after the command + + + + Insere un parametre avant la commande + insert a parameter before the commande + + + + Supprimer + delete + + + + supprime le mot clef + delete keyword + + + + Documentation + documentation + + + + documentation sur la commande + command's documentation + + + + Documentation Vide + empty documentation + + + + Aucune documentation n'est associee a ce noeud + no documentation is available for this node + + + + impossible de trouver la commande + unable to find command + + + + Lecteur PDF + PDF reader + + + + impossible d'ouvrir + unable to open + + + + Commentaire + Comment + + + + ce noeud + this node + + + + commente le noeud + comment this node + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + JDC Files (*.comm);;All Files(*) + + + + &Quitter + &Exit + + + + Quitter + Exit + + + + Fichier Duplique + file is duplicated + + + + Le fichier ne sera pas sauvegarde. + File will not be saved. + + + + &Annuler + &Cancel + + + + Fichier + File + + + + Le fichier <b>%s</b> est deja ouvert. + File <b>%s</b> is already open. + + + + &Duplication + &Duplication + + + + &Abort + &Abort + + + + Fichier Modifie + File is modified + + + + Le fichier %s n a pas ete sauvegarde. + file %s was not saved. + + + + &Sauvegarder + &Save + + + + Erreur a l'evaluation : + %s + Error when loadind : +%s + + + + Un fichier de nom %s existe deja : impossible de creer un repertoire de meme nom + File %s already exists : unable to create a directory with the same name + + + + Creation du repertoire %s impossible + Verifiez vos droits d'acces + Unable to create directory : check your access rights + + + + localisation de l'application, pour la traduction + use for application translation + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe valable + + + + + ERREUR! ce type de bloc (%s) n'est pas valable + + + + + n'est pas un index valide pour append_brother + is not correct - no possible "append_brother" + + + + Erreur interne + Internal error + + + + La PDF de la loi ne peut pas etre affichee. + unable to display law's PDF. + + + + Le fichier contient une commande MODEL + + file contains MODEL command + + + + Donnez le nom du fichier XML qui contient la description des variables + + + + + Choix unite %d + Choice for unit %d + + + + Fichier pour unite + File for unit + + + + La formule passee a l'interpreteur doit etre sous forme de tuple + formula must be written as tuple + + + + Debut + Beginning + + + + Le parametre EVAL ne peut valoir None + None is not a valid value for EVAL + + + + Pas de nom donne au parametre + No name given + + + + Le parametre %s ne peut valoir None + None is an incorrect value for parameter %s + + + + Format non implemente : %s + Not implemented format + + + + Type de valeur non supporte par le format pyth : n %(exception)s + nom + unsupported type of value + + + + Impossible de realiser la verification de la formule + unable to verify formula + + + + Pb interne : impossible de supprimer ce mot-clef + internal problem : unable to delete keyword + + + + Eficas ne peut pas traiter plusieurs instructions + sur la meme ligne : %s + Eficas is not able to manage many instructions on a same line + + + + le texte a analyser n'est pas celui d'une commande ou + d'un operateur : %s + text is not valid for a command or a operaor + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + text is not valid for command %(v_1)s %(v_2)s + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + text is not valid for command %(v_1)s %(v_2)s + + + + jdc %(v_1)s manque + fichier comm dans section %(v_2)s + v_1 + file %(v_1)s need a .comm file in section %(v_2)s + + + + jdc %(v_1)s + fichier include %(v_2)s, %(v_3)s + n'existe pas + v_1 + file %(v_1)s need an include file %(v_2)s,%(v_3)s does not exist + + + + jdc %(v_1)s manque fichier comm + dans section %(v_2)s + v_1 + file %(v_1)s need a .comm file in section %(v_2)s + + + + jdc %(v_1)s, le fichier de commandes + %(v_2)s n'existe pas + v_1 + jdc%(v_1)s, .comm %(v_2)s does not exist + + + + ATTENTION! Une source constante + n'est possible qu'a frequence nulle + en regime frequentiel + + + + + ERREUR! Une forme de la source du + type WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ATTENTION! Une source constante n'est + possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! Une forme de la source du type + WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe + indiquant le type de materiau ou de source associee + + + + + ERREUR! ce groupe de maille (%(nom)s) n'a pas + le prefixe correct pour etre associe a un type %(type_bloc)s + nom + + + + + + Include Invalide. + ne sera pas pris en compte + Invalid include file. text will not be included + + + + Impossible de relire le fichier %s + + unable to read file + + + + Le fichier include contient des erreurs + include file contains errors + + + + PARAMETRE + PARAMETER + + + + EFICAS ne sait pas convertir le JDC selon le format + Eficas does not know how to convert data according to the defined format + + + + le JDC doit etre valide pour une execution + Before a run action, JDC must be valid + + + + Sauvegarder SVP avant l'execution + Save before run action + + + + Sauvegarde de l'input impossible + unable to save input file + + + + Un JdC valide est necessaire pour creer un .input + file must be valid to create a .input file + + + + Choix du composant obligatoire + You have to choose a component + + + + Le fichier %s contient une commande INCLUDE + + file %s contains an "INCLUDE" command + + + + Donnez le nom du fichier dont vous + voulez faire une poursuite + Name the principal file + + + + Fichiers Med (*.med);;Tous les Fichiers (*) + Med Files (*.med);;All Files(*) + + + + Fichier Med + Med File + + + + Veuillez selectionner un fichier Med + Choose a Med file + + + + reel + float + + + + entier + integer + + + + complexe + complex + + + + l'aide n est pas installee + Help is not available + + + + Export Med vers Fichier + export Med Mesh in a file + + + + Impossibilite d exporter le Fichier + Unable to export file + + + + objet valide + valid object + + + + Valeur non modifiable + value can not be changed + + + + Options pour + + Settings + + + + Nombre minimal de valeurs : + minimal number of values : + + + + Nombre maximal de valeurs : + Maximal number of values : + + + + l expression n est pas de la forme a+bj + expression must be as a+bj + + + + Valeur du mot-cle enregistree + Value is recorded + + + + Valeur du mot-cle non autorisee + Value is not authorized + + + + Fichier non encore nomme + unnamed file + + + + SOURCE + SOURCE + + + + EnveloppeConnexeInducteur + Bounding_Box + + + + EnveloppeConnexe2 + + + + + VecteurDirecteur + Direction_Vector + + + + Centre + Center + + + + SectionBobine + Section + + + + Amplitude + Amplitude + + + + NbdeTours + NbTurns + + + + CONDUCTEUR + CONDUCTOR + + + + Conductivite + Conductivity + + + + PermeabiliteRelative + Relative_Permeability + + + + NOCOND + DIELECTRIC + + + + VCUT + CUT + + + + Orientation + Orientation + + + + ZS + ZS + + + + PARAMETRES + SETTINGS + + + + RepCarmel + Carmel_Directory + + + + TypedeFormule + Formula + + + + Frequence + Frequency + + + + Nb_Max_Iterations + Max_Nb_Iterations + + + + Erreur_Max + Max_Error + + + + Format non implemente + non implemented format + + + + Type d'objet non prevu + + + + + Fichier de donnees + data file + + + + Tous les Fichiers (*) + all files (*) + + + + Select + select + + + + nb min de valeurs : + minimal number of values : + + + + nb max de valeurs atteint + maximum number of values + + + + TraduitV10V11 + + + + + TraduitV11V12 + + + + + Sauve Format Ligne + save file in line format + + + + Valeur du mot-clef enregistree + value recorded + + + + Valeur du mot-clef non autorisee : + unvalid value + + + + %s n'est pas un fichier valide + %s is not a valid file + + + + : verifie les types dans un tuple + valids type in a tuple + + + + Les types entres ne sont pas permis + unvalid type for values + + + + La cardinalite n'est pas correcte, la derniere valeur est ignoree + unvalid multiplicity. last value will be ignored + + + + n est pas un tuple de + is not a tuple + + + + valeurs + values + + + + Valeur incorrecte + incorrect value + + + + n est pas un identifiant correct + + is not a valid name + + + + Entrer un float SVP + Float expected + + + + Entrer un float inferieur a + float lower than + + + + Entrer un float superieur a + float superior than + + + + Mauvaise execution + bad run + + + + impossible d executer la methode + unable to run method + + + + Mauvaise Commande + bad command + + + + Aucune variable connue + no possible variable + + + + Mauvaise dimension de matrice + bad matrix dimension + + + + le nombre de ligne n est pas egal a + number of lines is not + + + + le nombre de colonne n est pas egal a + number of columns is not + + + + Mauvaise Valeur + bad value + + + + l element + element + + + + n est pas correct + is not correct + + + + Modification Impossible + unable to modify + + + + le parametre n'est pas valide + parameter is not valid + + + + n est pas un identifiant correct + is not a correct name + + + + Valeur incorrecte: + incorrect value : + + + + Valeur incorrecte + incorrect value + + + + Valeur correcte + valid value + + + + impossible d'evaluer : + unable to evaluate : + + + + Un concept de nom %s existe déjà ! + already existing concept with name : %s ! + + + + existe deja + + already exists + + + + La matrice n'a pas le bon entete + header does not match with matrix + + + + le mot clef + keyword + + + + doit etre insere avant + has to be inserted before + + + + insertion impossible + unable to insert keyword + + + + doit etre insere apres + has to be inserted after + + + + Nb maximum de valeurs atteint + Maximal number of values + + + + pas de regle de construction pour ce jeu de commandes + No specific rules for building this dataset + + + + Gestion Maillage + Mesh Menu + + + + Acquiert groupe mailles + Read elements mesh + + + + Acquisition Groupe Maille + Read elements mesh + + + + VERSION + VERSION_EN + + + + NUM + NUMBER + + + + FILETYPE + FILETYPE + + + + PARAMETERS + Parametres + + + + Fichier_maillage + FichierMaillage + + + + Echelle_du_maillage + MeshScale + + + + Formulation + Fomulation + + + + Timeproblem + TimeProblem + + + + spectral + EssaiSpectral + + + + Basis + Basis + + + + Fourier + Fourier + + + + Ordre + Ordre + + + + FREQUENCY + Frequency + + + + minimisation + Minimisation + + + + no + no + + + + yes + yes + + + + nb_procs_para + NbProcs + + + + POLYMER + Polymer_en_Anglais + + + + MODEL_DATABASE + MoDEL_DATa_Anglais + + + + Stabilise + Srabilise_Anglais + + + + Non Stabilise + Non Stabilise anglais + + + + Local + local_anglais + + + + ESSAI_OPTION + essai_option_anglais + + + + MATERIEL + mater_anglais + + + + Cable + cable_anglais + + + + Peinture + peinture_anglais + + + + Tuyauterie + tuyau_anglais + + + + Materiau_De_Cable + mat_cable_anglais + + + + PE + pe_anglais + + + + EPDM + epdm_anglais + + + + Modele + modele_anglais + + + + Objet commande commentarisé invalide + + + + + ChoixCode + + + Choix du code + Choose code + + + + Veuillez choisir un code : + Choose code : + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + ChoixCommandes + + + DMacro + DMacro + + + + Alphabetique + alphabetic sort + + + + Par Groupe + Sort by group + + + + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Affichage</span></p></body></html> + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Order</span></p></body></html> + + + + affiche les commandes par ordre alphabetique + display commands in alphabetic order + + + + affiche les commandes selon les thèmes + display commands by thema + + + + Ordre de la modélisation + ordered by modelisation + + + + <html><head/><body><p align="center">Filtre Commande</p></body></html> + <html><head/><body><p align="center">Filters Commands</p></body></html> + + + + filter commands + filters commands + + + + affiche les régles de validité + display validity rules + + + + ... + + + + + Règles de construction + Building Rules + + + + Sensible à la casse + case-sensitive + + + + Effacer + Clear + + + + selectionne les mots qui CONTIENNENT l expression + select words that CONTAINS the filter + + + + ré-affiche toutes les commandes + re-display the list of commands + + + + DChoixCata + + + Choix d'une version du code Aster + Choose a version for code Aster + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 versions sont disponibles</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 catalogs are available </span></p></body></html> + + + + &OK + &Ok + + + + &Cancel + &Cancel + + + + Validate choice + validate choice + + + + DSelVal + + + Sélection de valeurs + Values Selections + + + + Separateur + marker + + + + espace + space + + + + virgule + comma + + + + point-virgule + semi-colon + + + + Ajouter Selection + add selected value + + + + Importer Tout + imports all values + + + + DVisu + + + Visualisation Include Materiau + View Include + + + + Eficas + + + MainWindow + Main Window + + + + &Fichier + &File + + + + &Aide + &Help + + + + toolBar + toolBar + + + + &Nouveau + &New + + + + Ctrl+N + Ctrl+N + + + + Nouvel Include + New Include + + + + &Ouvrir + &Open + + + + Ctrl+O + Ctrl+O + + + + Enregistrer + Save + + + + Enregistrer sous + Save as + + + + Fermer + Close + + + + Ctrl+W + + + + + Fermer tout + Close all + + + + Couper + Cut + + + + Ctrl+X + Ctrl+X + + + + Copier + Copy + + + + Ctrl+C + Ctrl+C + + + + Coller + Paste + + + + Ctrl+V + Ctrl+V + + + + Quitter + Exit + + + + Ctrl+Q + Ctrl+Q + + + + Rapport de Validation + Validation Report + + + + Fichier Source + Source File + + + + Fichier Résultat + Result File + + + + Parametres Eficas + Eficas Parameters + + + + Lecteur documentation + documentation reader + + + + Eficas + Eficas + + + + Version + Version + + + + Supprimer + Delete + + + + Rechercher + Find + + + + Rechercher dans l'arbre d'etude + Find in Data Tree + + + + Ctrl+F + Ctrl+F + + + + Replier/Deplier + Expand/Collapse + + + + Execution + Run + + + + Execution + Run + + + + Patrons + Patterns + + + + Tab 1 + + + + + &Edition + &Edit + + + + &JeuDeDonnées + &Data + + + + Shift+I + + + + + Ctrl+S + + + + + Ctrl+Shift+S + + + + + Shift+V + + + + + Chercher Mot-Clef + Find Keyword + + + + Rechercher dans le catalogue + Find Keyword in Catalog + + + + Shift+F + + + + + Shift+D + + + + + Commentaire + Comment + + + + Shift+C + + + + + Paramètres + Parameters + + + + Gestion des paramètres + Managing parameters + + + + Shift+P + + + + + Parametre Eficas + Eficas Settings + + + + Save Run + Save run + + + + Run + run + + + + &bad + + + + + Régles du JdC + Rules for dataset + + + + JDCEditor + + + Save File + + + + + The file <b>%1</b> could not be saved.<br>Reason: %2 + + + + + JDC (*.comm);;All Files (*) + + + + + &Abandonner + &Cancel + + + + Tuple2 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Tuple3 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Widget4a6RadioButton + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + WidgetBloc + + + Form + + + + + WidgetCB + + + Affiche le rapport de validation du mot-clef + display validation report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetCommande + + + Affiche le rapport de validité de la commande + Display validity report for the keyword + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + <html><head/><body><p><span style=" color:#0000ff;">command </span></p></body></html + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + Object Name. Only valid objects can be named + + + + Lance un script associé à la commande + Run associated script + + + + ouvre un navigateur sur l'aide contextuelle + open a browser to navigate to contextual help + + + + affiche les régles de validité + display validity rules + + + + Détruit la commande + Delete the command + + + + Affiche les commandes possibles + display allowed commands + + + + &Commandes + &Commands + + + + Shift+A, Alt+A, Alt+A, Alt+A + Shift+A, Alt+A, Alt+A, Alt+A + + + + Affiche le formulaire de la commande précédente + display previous command + + + + Affiche le formulaire de la commande suivante + display next command + + + + DCommandeUnique + + + + + ... + + + + + << + + + + + >> + + + + + TextLabel + + + + + WidgetCommentaire + + + <html><head/><body><p><span style=" color:#0000ff;">Commentaire</span></p></body></html> + <html><head/><body><p><span style=" color:#0000ff;">Comment</span></p></body></html> + + + + Affiche les commandes possibles + display allowed commands + + + + Shift+A, Alt+A, Alt+A, Alt+A + Shift+A, Alt+A, Alt+A, Alt+A + + + + Détruit le commentaire + Delete the comment + + + + &Commandes + &Commands + + + + Affiche le formulaire de la commande précédente + display previous command + + + + Affiche le formulaire de la commande suivante + display next command + + + + DCommandeUnique + + + + + ... + + + + + << + + + + + >> + + + + + WidgetDate + + + Affiche le rapport de validation du mot-clef + Display validity report for keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetFact + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" font-style:italic;">TextLabel</span></p></body></html> + + + + + WidgetFactPlie + + + TextLabel + TextLabel + + + + Form + + + + + ... + + + + + WidgetHeure + + + Affiche le rapport de validation du mot-clef + Display validity report for keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetInformative + + + Form + + + + + WidgetOptionnel + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + <html><head/><body><p><span style=" color:#0000ff;">command </span></p></body></html + + + + WidgetOptionnel + + + + + WidgetParam + + + <html><head/><body><p><span style=" color:#000000;">Paramètre</span></p></body></html> + <html><head/><body><p><span style=" color:#000000;">Parameter</span></p></body></html> + + + + Détruit le commentaire + Delete the comment + + + + Affiche les commandes possibles + Display allowed commands + + + + &Commandes + &Commands + + + + Shift+A, Alt+A, Alt+A, Alt+A + Shift+A, Alt+A, Alt+A, Alt+A + + + + Affiche le formulaire de la commande précédente + Display previous command + + + + Affiche le formulaire de la commande suivante + Display next command + + + + <html><head/><body><p>Valeur: </p></body></html> + <html><head/><body><p>Value: </p></body></html< + + + + <html><head/><body><p>Nom: </p></body></html> + <html><head/><body><p>Name: </p></body></html> + + + + Verifie la valeur + Valid the value + + + + DCommandeUnique + + + + + ... + + + + + << + + + + + >> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetPlusieursBase + + + Affiche le rapport de validation du mot-clef + Display validity report for keyword + + + + Remonte la ligne + up + + + + Descend la ligne + down + + + + supprime une ligne + deletes a line + + + + Ajoute une ligne + add a line + + + + Montre l'ensemble des valeurs + display all the value + + + + Sélectionne depuis Salome + from salome + + + + Visualise dans Salome + Show in salome + + + + Ouvre un fichier de sélection des valeurs + Open a file for selection + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + manage list + + + + TextLabel + TextLabel + + + + WidgetPlusieursInto + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + manage list + + + + WidgetPlusieursIntoOrdonne + + + Affiche le rapport de validation du mot-clef + display validity report for the keyword + + + + TextLabel + TextLabel + + + + Remonte d'une ligne + Up + + + + Descend d'une ligne + Down + + + + Détruit une ligne + Delete a line + + + + ajoute une ligne + add a line + + + + visualise l'ensemble des valeurs + show all values + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + manage list + + + + WidgetPlusieursPlie + + + Form + + + + + Affiche le rapport de validité du mot-clef + Display validity report for the keyword + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + manage list + + + + Détruit le mot-clef + Delete the keyword + + + + WidgetPlusieursTuple + + + Form + + + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + Up + + + + Descend la ligne + Down + + + + supprime une ligne + delete a line + + + + Ajoute une ligne + add a line + + + + Montre l'ensemble des valeurs + show all values + + + + Ouvre un fichier de sélection des valeurs + import data from a file + + + + Détruit le mot-clef + Delete the keyword + + + + TextLabel + TextLabel + + + + WidgetRadioButton + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + WidgetSDCOInto + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + <html><head/><body><p>Structures de données du type requis </p><p><br/></p></body></html> + <html><head/><body><p>Objects with the recquired type</p><p><br/></p></body></html> + + + + <html><head/><body><p>ou Nom du concept</p></body></html> + or name the object + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetSimpBase + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetSimpBool + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + True + + + + + False + + + + + WidgetSimpComplexe + + + Complexe : a+bj + Complex : a+bj + + + + Réel/Imaginaire + Real/Imaginary + + + + Module/Phase + Module/Phase + + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p align="center">OU </p></body></html> + + + + + WidgetSimpFichier + + + Affiche le rapport de validité du mot-clef + Display validity report for the keyword + + + + affiche l'explorateur de fichier + open file explorer + + + + ouvre le fichier choisi + Open the file + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetSimpTxt + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetTuple2 + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + WidgetTuple3 + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + WidgetUniqueSDCO + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + Attend un objet de type CO + expect a CO Object + + + + Détruit le mot-clef + Delete the keyword + + + + Form + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + WidgetVide + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0055ff;">Label</span></p></body></html> + + + + + Attend un objet de type XXXX. Il faut le créer + object must be created + + + + baseWidget + + + DMacro + DMacro + + + + dView + + + Dialog + Dialog + + + + Fermer + Close + + + + Sauver + Save + + + + desRecherche + + + Rechercher dans le JDC + Find in JDC + + + + Suivant + Next + + + + Next + + + + + desWidgetCreeParam + + + Gestion des Paramètres + Parameters + + + + <html><head/><body><p>Nom: </p></body></html> + Name + + + + <html><head/><body><p>Valeur: </p></body></html> + Value + + + + <html><head/><body><p><span style=" text-decoration: underline;">Créer un paramètre</span></p></body></html> + <html><head/><body><p><span style=" text-decoration: underline;">New Parameter</span></p></body></html> + + + + desWidgetMatrice + + + Dialog + Dialog + + + + Affiche le rapport de validation du mot-clef + Display validity report for the keyword + + + + ... + + + + + <html><head/><body><p>Met à jour l'en-tête</p></body></html> + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + self.appliEficas + + + Wrapper Files (*.xml);;All Files (*) + + + + + Noname + + + + + viewRegles + + + Dialog + Dialog + + + diff --git a/UiQT4/eficas_en.ts b/UiQT4/eficas_en.ts index e514c2ef..f89ee2a7 100644 --- a/UiQT4/eficas_en.ts +++ b/UiQT4/eficas_en.ts @@ -2,6 +2,50 @@ @default + + Discretisations_En_Espace + Discretizations_In_Space + + + Option_De_Supg + Supg_Option + + + Forme_De_La_Convection + Type_Of_Advection + + + Cote constante + Constant elevation + + + Cote Nulle + Zero elevation + + + Hauteur Nulle + Zero depth + + + Hauteur constante + Constant depth + + + Particulieres + Special + + + Altimetrie satellite tpxo + Tpxo satellite altimetry + + + Sequentiel + Sequential + + + Parallele + Parallel + lecture du fichier impossible : diff --git a/UiQT4/eficas_fr.0106.ts b/UiQT4/eficas_fr.0106.ts new file mode 100644 index 00000000..22d9c577 --- /dev/null +++ b/UiQT4/eficas_fr.0106.ts @@ -0,0 +1,4745 @@ + + + + @default + + Values_Of_Tracers_In_The_Rain + Valeurs_Des_Traceurs_Dans_La_Pluie + + + Threshold_Depth_For_Receding_Procedure + Profondeur_Limite_Pour_Procedure_De_Ressuyage + + + Title + Titre + + + Spatial_Projection_Type + Type_De_Projection_Spatiale + + + Stochastic_Diffusion_Model + Modele_De_Diffusion_Stochastique + + + Drogues_File + Fichier_Des_Flotteurs + + + Origin_Coordinates + Coordonnees_De_L'origine + + + Thickness_Of_Algae + Epaisseur_Des_Algues + + + Velocities_Of_The_Sources_Along_X + Vitesses_Des_Sources_Selon_X + + + Velocities_Of_The_Sources_Along_Y + Vitesses_Des_Sources_Selon_Y + + + Finite_Volume_Scheme + Schema_En_Volumes_Finis + + + Density_Of_Algae + Masse_Volumique_Des_Algues + + + Geometry_File + Fichier_De_Geometrie + + + Turbulence_Model + Modele_De_Turbulence + + + Oil_Spill_Model + Modele_De_Nappes_D'hydrocarbures + + + Definition_Of_Zones + Definition_De_Zones + + + Rain_Or_Evaporation + Pluie_Ou_Evaporation + + + Sources_File + Fichier_Des_Sources + + + Friction_Coefficient + Coefficient_De_Frottement + + + Wind + Vent + + + Option_For_Tidal_Boundary_Conditions + Option_Pour_Les_Conditions_Aux_Limites_De_Maree + + + Coefficient_To_Calibrate_Tidal_Velocities + Coefficient_De_Calage_Des_Vitesses_De_Courant + + + Initial_Time_Set_To_Zero + Remise_A_Zero_Du_Temps + + + Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers + Maximum_D'iterations_Pour_La_Diffusion_Des_Traceurs + + + Binary_Results_File + Fichier_De_Resultats_Binaire + + + Number_Of_Drogues + Nombre_De_Flotteurs + + + Air_Pressure + Pression_Atmospherique + + + Mean_Depth_For_Linearization + Profondeur_Moyenne_Pour_La_Linearisation + + + Control_Of_Limits + Controle_Des_Limites + + + Free_Surface_Gradient_Compatibility + Compatibilite_Du_Gradient_De_Surface_Libre + + + Prescribed_Tracers_Values + Valeurs_Imposees_Des_Traceurs + + + defaut + Saint-venant_Ef + + + Velocity_Diffusivity + Coefficient_De_Diffusion_Des_Vitesses + + + Time_Step + Pas_De_Temps + + + Validation + Validation + + + Roughness_Coefficient_Of_Boundaries + Coefficient_De_Rugosite_Des_Bords + + + Density_Effects + Effets_De_Densite + + + Implicitation_Coefficient_Of_Tracers + Coefficient_D'implicitation_Des_Traceurs + + + Formatted_Results_File + Fichier_De_Resultats_Formate + + + Debugger + Debugger + + + Liquid_Boundaries_File + Fichier_Des_Frontieres_Liquides + + + Sections_Output_File + Fichier_De_Sortie_Des_Sections_De_Controle + + + Number_Of_Private_Arrays + Nombre_De_Tableaux_Prives + + + Coefficient_Of_Wind_Influence + Coefficient_D'influence_Du_Vent + + + Depth_In_Friction_Terms + Hauteur_Dans_Les_Termes_De_Frottement + + + Coefficient_To_Calibrate_Sea_Level + Coefficient_De_Calage_Du_Niveau_De_Mer + + + Variables_To_Be_Printed + Variables_A_Imprimer + + + Preconditioning + Preconditionnement + + + Cost_Function + Fonction_Cout + + + Type_Of_Sources + Type_Des_Sources + + + Tidal_Flats + Bancs_Decouvrants + + + Ascii_Database_For_Tide + Base_Ascii_De_Donnees_De_Maree + + + Original_Date_Of_Time + Date_De_L'origine_Des_Temps + + + Mean_Temperature + Temperature_Moyenne + + + Initial_Elevation + Cote_Initiale + + + Tubes_Data_File + Fichier_De_Donnees_Des_Buses + + + Boundary_Conditions_File + Fichier_Des_Conditions_Aux_Limites + + + Breach + Breche + + + Treatment_Of_The_Linear_System + Traitement_Du_Systeme_Lineaire + + + Prescribed_Elevations + Cotes_Imposees + + + List_Of_Points + Liste_De_Points + + + Listing_Printout_Period + Periode_Pour_Les_Sorties_Listing + + + Initial_Guess_For_H + Ordre_Du_Tir_Initial_Pour_H + + + Geometry_File_Format + Format_Du_Fichier_De_Geometrie + + + Coefficient_1_For_Law_Of_Tracers_Degradation + Coefficient_1_De_La_Loi_De_Degradation_Des_Traceurs + + + Number_Of_Lagrangian_Drifts + Nombre_De_Derives_Lagrangiennes + + + Weirs_Data_File + Fichier_De_Donnees_Des_Seuils + + + Rain_Or_Evaporation_In_Mm_Per_Day + Pluie_Ou_Evaporation_En_Mm_Par_Jour + + + Minor_Constituents_Inference + Interpolation_De_Composantes_Mineures + + + Maximum_Number_Of_Friction_Domains + Nombre_Maximum_De_Domaines_De_Frottement + + + Elements_Masked_By_User + Elements_Masques_Par_L'utilisateur + + + Control_Sections + Sections_De_Controle + + + Number_Of_Time_Steps + Nombre_De_Pas_De_Temps + + + Solver_Accuracy + Precision_Du_Solveur + + + Wave_Driven_Currents + Courants_De_Houle + + + Number_Of_Culverts + Nombre_De_Siphons + + + Equations + Equations + + + Maximum_Number_Of_Iterations_For_Identification + Maximum_D'iterations_Pour_L'identification + + + Coefficient_For_Diffusion_Of_Tracers + Coefficient_De_Diffusion_Des_Traceurs + + + Option_For_The_Diffusion_Of_Velocities + Option_Pour_La_Diffusion_Des_Vitesses + + + Coefficient_To_Calibrate_Tidal_Range + Coefficient_De_Calage_Du_Marnage + + + Binary_Data_File_1 + Fichier_De_Donnees_Binaire_1 + + + Binary_Data_File_2 + Fichier_De_Donnees_Binaire_2 + + + Solver + Solveur + + + Implicitation_For_Velocity + Implicitation_Pour_La_Vitesse + + + Longitude_Of_Origin_Point + Longitude_Du_Point_Origine + + + Original_Hour_Of_Time + Heure_De_L'origine_Des_Temps + + + Law_Of_Friction_On_Lateral_Boundaries + Loi_De_Frottement_Sur_Les_Parois_Laterales + + + Propagation + Propagation + + + Solver_For_Diffusion_Of_Tracers + Solveur_Pour_La_Diffusion_Des_Traceurs + + + Discretizations_In_Space + Discretisations_En_Espace + + + Solver_Option + Option_Du_Solveur + + + Advection_Of_H + Convection_De_H + + + Output_Of_Initial_Conditions + Sortie_Des_Conditions_Initiales + + + Record_Number_For_Restart + Enregistrement_Pour_Suite_De_Calcul + + + Accuracy_For_Diffusion_Of_Tracers + Precision_Pour_La_Diffusion_Des_Traceurs + + + Initial_Guess_For_U + Ordre_Du_Tir_Initial_Pour_U + + + Advection_Of_K_And_Epsilon + Convection_De_K_Et_Epsilon + + + Identification_Method + Methode_D'identification + + + Names_Of_Points + Noms_Des_Points + + + Zone_Number_In_Geographic_System + Numero_De_Fuseau_Ou_Projection_Dans_Le_Systeme_Geographique + + + Matrix_Storage + Stockage_Des_Matrices + + + Algae_Type + Type_Des_Algues + + + Water_Density + Masse_Volumique_De_L'eau + + + Newmark_Time_Integration_Coefficient + Coefficient_D'integration_En_Temps_De_Newmark + + + Friction_Data_File + Fichier_De_Donnees_Pour_Le_Frottement + + + Implicitation_For_Diffusion_Of_Velocity + Implicitation_Pour_La_Diffusion_Des_Vitesses + + + Limit_Values + Valeurs_Limites + + + Advection + Convection + + + Geographic_System + Systeme_Geographique + + + Results_File + Fichier_Des_Resultats + + + Algae_Transport_Model + Modele_De_Transport_Des_Algues + + + Treatment_Of_Negative_Depths + Traitement_Des_Hauteurs_Negatives + + + Ordinates_Of_Sources + Ordonnees_Des_Sources + + + Coriolis_Coefficient + Coefficient_De_Coriolis + + + Water_Discharge_Of_Sources + Debits_Des_Sources + + + Advection_Of_U_And_V + Convection_De_U_Et_V + + + Latitude_Of_Origin_Point + Latitude_Du_Point_Origine + + + Binary_Database_1_For_Tide + Base_Binaire_1_De_Donnees_De_Maree + + + Coriolis + Coriolis + + + Desired_Courant_Number + Nombre_De_Courant_Souhaite + + + Variables_For_Graphic_Printouts + Variables_Pour_Les_Sorties_Graphiques + + + Time_Range_For_Fourier_Analysis + Bornes_En_Temps_Pour_L'analyse_De_Fourier + + + Graphic_Printout_Period + Periode_Pour_Les_Sorties_Graphiques + + + Tide_Generating_Force + Force_Generatrice_De_La_Maree + + + Preconditioning_For_Diffusion_Of_Tracers + Preconditionnement_Pour_La_Diffusion_Des_Traceurs + + + Number_Of_Tubes + Nombre_De_Buses + + + Vertical_Structures + Structures_Verticales + + + Stop_If_A_Steady_State_Is_Reached + Arret_Si_Un_Etat_Permanent_Est_Atteint + + + Number_Of_Weirs + Nombre_De_Seuils + + + Listing_Printout + Sortie_Listing + + + Previous_Computation_File + Fichier_Du_Calcul_Precedent + + + Fortran_File + Fichier_Fortran + + + Sections_Input_File + Fichier_Des_Sections_De_Controle + + + Binary_Database_2_For_Tide + Base_Binaire_2_De_Donnees_De_Maree + + + Results_File_Format + Format_Du_Fichier_Des_Resultats + + + Accuracy_Of_K + Precision_Sur_K + + + Tidal_Model_File + Fichier_Du_Modele_De_Maree + + + Fourier_Analysis_Periods + Periodes_D'analyse_De_Fourier + + + H_Clipping + Clipping_De_H + + + Tolerances_For_Identification + Precisions_Pour_L'identification + + + Previous_Computation_File_Format + Format_Du_Fichier_Du_Calcul_Precedent + + + Prescribed_Flowrates + Debits_Imposes + + + Bottom_Topography_File + Fichier_Des_Fonds + + + Implicitation_For_Depth + Implicitation_Pour_La_Hauteur + + + Reference_File_Format + Format_Du_Fichier_De_Reference + + + Diffusion_Of_Tracers + Diffusion_Des_Traceurs + + + Formatted_Data_File_1 + Fichier_De_Donnees_Formate_1 + + + Formatted_Data_File_2 + Fichier_De_Donnees_Formate_2 + + + Computation_Continued + Suite_De_Calcul + + + Breaches_Data_File + Fichier_De_Donnees_Des_Breches + + + Diffusion_Of_Velocity + Diffusion_Des_Vitesses + + + Type_Of_Advection + Forme_De_La_Convection + + + Solver_Option_For_Tracers_Diffusion + Option_Du_Solveur_Pour_La_Diffusion_Des_Traceurs + + + Advection_Of_Tracers + Convection_Des_Traceurs + + + Printout_Period_For_Drogues + Periode_Pour_Les_Sorties_De_Flotteurs + + + Option_For_The_Treatment_Of_Tidal_Flats + Option_De_Traitement_Des_Bancs_Decouvrants + + + Physical_Characteristics_Of_The_Tsunami + Parametres_Physiques_Du_Tsunami + + + Maximum_Number_Of_Iterations_For_K_And_Epsilon + Maximum_D'iterations_Pour_K_Et_Epsilon + + + Tidal_Data_Base + Base_De_Donnees_De_Maree + + + Maximum_Number_Of_Iterations_For_Solver + Maximum_D'iterations_Pour_Le_Solveur + + + Number_Of_Tracers + Nombre_De_Traceurs + + + Threshold_Depth_For_Wind + Profondeur_Limite_Pour_Le_Vent + + + Gravity_Acceleration + Acceleration_De_La_Pesanteur + + + Option_For_Characteristics + Option_Pour_Les_Caracteristiques + + + Spacing_Of_Roughness_Elements + Espacement_Des_Elements_De_Frottement + + + Parallel_Processors + Processeurs_Paralleles + + + Harmonic_Constants_File + Fichier_Des_Constantes_Harmoniques + + + Spherical_Coordinates + Coordonnees_Spheriques + + + Parameter_Estimation + Estimation_De_Parametre + + + Linearized_Propagation + Propagation_Linearisee + + + Accuracy_Of_Epsilon + Precision_Sur_Epsilon + + + Diameter_Of_Roughness_Elements + Diametre_Des_Elements_De_Frottement + + + Number_Of_First_Time_Step_For_Graphic_Printouts + Numero_Du_Premier_Pas_De_Temps_Pour_Les_Sorties_Graphiques + + + Threshold_For_Negative_Depths + Seuil_Pour_Les_Profondeurs_Negatives + + + Wind_Velocity_Along_X + Vitesse_Du_Vent_Suivant_X + + + Wind_Velocity_Along_Y + Vitesse_Du_Vent_Suivant_Y + + + Information_About_Solver + Informations_Sur_Le_Solveur + + + Initial_Conditions + Conditions_Initiales + + + Culvert_Data_File + Fichier_De_Donnees_Des_Siphons + + + Maximum_Number_Of_Iterations_For_Advection_Schemes + Maximum_D'iterations_Pour_Les_Schemas_De_Convection + + + Turbulence_Model_For_Solid_Boundaries + Regime_De_Turbulence_Pour_Les_Parois + + + Continuity_Correction + Correction_De_Continuite + + + Law_Of_Bottom_Friction + Loi_De_Frottement_Sur_Le_Fond + + + Option_For_Tsunami_Generation + Option_Pour_La_Generation_De_Tsunami + + + Type_Of_Weirs + Type_Des_Seuils + + + Record_Number_In_Wave_File + Numero_De_L'enregistrement_Dans_Le_Fichier_De_Houle + + + Abscissae_Of_Sources + Abscisses_Des_Sources + + + Values_Of_The_Tracers_At_The_Sources + Valeurs_Des_Traceurs_Des_Sources + + + Treatment_Of_Fluxes_At_The_Boundaries + Traitement_Des_Flux_Aux_Frontieres + + + Printing_Cumulated_Flowrates + Impression_Du_Cumul_Des_Flux + + + Compatible_Computation_Of_Fluxes + Calcul_Compatible_Des_Flux + + + Bottom_Smoothings + Lissages_Du_Fond + + + Initial_Depth + Hauteur_Initiale + + + Minimum_Value_Of_Depth + Valeur_Minimum_De_H + + + Option_For_The_Diffusion_Of_Tracers + Option_Pour_La_Diffusion_Des_Traceurs + + + Duration + Duree_Du_Calcul + + + Stop_Criteria + Criteres_D'arret + + + Prescribed_Velocities + Vitesses_Imposees + + + Initial_Values_Of_Tracers + Valeurs_Initiales_Des_Traceurs + + + Reference_File + Fichier_De_Reference + + + + lecture du fichier impossible : + unable to read file + + + + Impossible d'ouvrir le fichier %s + unable to read file + + + + Format de sortie : %s, non supporte + + + + + Impossible d'ouvrir le fichier : %s + + + + + Erreur a l'evaluation : + %s + + + + + Erreur ! Erreur ! + + + + + Erreur rencontree dans recherche_enfants : %s + + + + + Erreur dans la creation du mot-cle : %s + + + + + Impossible d'ouvrir le fichier : %s + + + + + le texte a analyser n'est pas celui d'une commande ou d'un operateur : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + %d n'est pas un index valide pour append_brother + + + + + le fichier de commandes %s n'existe pas + + + + + un fichier de commandes doit etre defini avant une poursuite %s + + + + + le fichier poursuite %s n'existe pas + + + + + include mal defini %s + + + + + un fichier de commandes doit etre defini avant un include %s + + + + + le fichier include %s n'existe pas + + + + + le fichier jdc %s n'existe pas + + + + + jdc %s manque option jdc dans section jdc + + + + + %(v_1)s include %(v_2)s : %(v_3)s + v_1 + + + + + %(v_1)s fichier poursuite: %(v_2)s + v_1 + + + + + nom etude : %s + + + + + utilisation : %prog [options] + + + + + nom du fichier de commandes + + + + + nom du fichier poursuite + + + + + numero d'unite suivi du nom du fichier include + + + + + fichier decrivant une etude + + + + + version de catalogue a utiliser + + + + + nom du code a utiliser + + + + + niveau de debug + + + + + schema + + + + + localisation de l'application, pour la traduction + + + + + Nombre incorrect d'arguments + + + + + Localisation specifiee pour l'application. + + + + + Un fichier de nom %s existe deja : impossible de creer un repertoire de meme nom + + + + + Creation du repertoire %s impossible + Verifiez vos droits d'acces + + + + + Impossible de transferer les fichiers requis dans : %s + + + + + Erreur + + + + + Erreurs fatales + + + + + Impossible reconstruire commande + + + + + + Objet commentaire non valorise + + + + + Debut Fonction %s + + + + + Fin Fonction %s + + + + + Nom de concept deja defini : %s + + + + + Longueur incorrecte + + + + + L'attribut 'min' doit etre un entier : + + + + + L'attribut 'max' doit etre un entier : + + + + + Nombres d'occurrence min et max invalides : + + + + + L'attribut 'fr' doit etre une chaine de caracteres + + + + + L'attribut 'statut' doit valoir 'o','f','c' ou 'd' + + + + + L'attribut 'docu' doit etre une chaine de caracteres + + + + + Fin + + + + + Le parametre EVAL %s ne peut valoir None + + + + + Le parametre EVAL ne peut valoir None + + + + + Pas de nom donne au parametre EVAL + + + + + Un nom de parametre ne peut depasser 8 caracteres + + + + + ERREUR + + + + + Format pas implemente : %s + + + + + Type d'objet non prevu : %s + + + + + ce groupe de maillage %s est associe a au moins un materiau et au moins une source. + + + + + ce groupe de maillage %s n'est associe a aucun materiau ou source. + + + + + ATTENTION! Une source constante n'est possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe valable + + + + + ERREUR! ce type de bloc (%s) n'est pas valable + + + + + toutes les donnees ne sont pas connues + + + + + Fichier patron %s n'existe pas. + + + + + Pas supporte + + + + + Entite inconnue ou interdite :%s + + + + + Entite inconnue ou interdite :%s. Elle est ignoree + + + + + Les tuples ne sont pas supportes pour le format ini :%s + + + + + Type de valeur non supportee par le format ini :%(nom)s +%(exception)s + nom + + + + + Il y a un pb a la Creation du XML + + + + + Il y a un pb a la Creation du STD + + + + + Entite inconnue ou interdite : %s. Elle est ignoree + + + + + Type de valeur non supporte par le format pyth : n %(exception)s + nom + + + + + Tag %s non-defini. Ceci est un bogue interne. en informer les developpeurs. + + + + + Le mot-cle %s est obligatoire. + + + + + concept %(inst_name)s de type %(class_name)s + inst_name + + + + + Un nom de concept doit etre un identificateur Python + + + + + Concept existant + + + + + Operateur reentrant mais concept non existant + + + + + Operateur reentrant et concept existant trouve + + + + + Concept deja existant et de mauvais type + + + + + Nommage du concept refuse : un concept de meme nom existe deja + + + + + Nommage du concept effectue + + + + + Nommage impossible %s + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese ouvrante manquante + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese fermante manquante + + + + + Pas de nom donne a la FORMULE + + + + + Un nom de FORMULE ne peut depasser 8 caracteres + + + + + Un nom de FORMULE ne peut pas commencer par un chiffre + + + + + Le type de la valeur retournee n'est pas specifie + + + + + Une formule ne peut retourner une valeur de type : %s + + + + + Impossible d'ajouter la commande + + + + + Impossible d ajouter la commande + + + + + Pas implemente + + + + + Nom de concept deja defini + + + + + Nom de concept deja defini : + + + + + Impossible de trouver le fichier correspondant a l'unite + + + + + n'est pas un fichier existant + + + + + Fichier invalide %s + + + + + Impossible de construire le jeu de commandes correspondant au fichier + + + + + Erreur lors de l'evaluation du fichier inclus + + + + + Ce fichier ne sera pas pris en compte + %s + + + + + Ce fichier ne sera pas pris en compte +Le fichier associe n'est pas defini + + + + + Le fichier n est pas defini + + + + + le fichier doit contenir une unique variable de sortie + + + + + Fichier invalide + + + + + Le contenu de ce fichier ne sera pas pris en compte + %s + + + + + Le fichier INCLUDE n est pas defini + + + + + Le contenu de ce fichier ne sera pas pris en compte + + + + + + Erreur lors de l'evaluation du fichier poursuite + + + + + L'objet %(v_1)s ne peut etre un fils de %(v_2)s + v_1 + + + + + L'objet %s ne peut pas etre repete + + + + + Erreur - mclist inexistante : %s + + + + + Erreur - mot cle facteur de nom : %s + + + + + traitement non-prevu + + + + + L'objet %s ne peut pas etre ajoute + + + + + None n'est pas une valeur autorisee + + + + + un concept de meme nom existe deja + + + + + Concept cree + + + + + La matrice n'est pas une matrice %(n_lign)d sur %(n_col)d + n_lign + + + + + Impossible de relire le fichier %s + + + + + + Le fichier include contient des erreurs + + + + + n'est pas un index valide pour append_brother + + + + + Decommenter + + + + + Decommente la commande + + + + + Impossible de supprimer un mot-cle obligatoire + + + + + Mot-cle %s supprime + + + + + Pb interne : impossible de supprimer ce mot-cle + + + + + Commentaire supprime + + + + + Commande %s supprimee + + + + + Pb interne : impossible de supprimer cet objet + + + + + Le fichier de commande n'a pas pu etre converti pour etre editable par Eficas + + + + + + + Include vide + + + + + L'include doit etre correctement initialise pour etre visualise + + + + + Impossible de supprimer ce mot-clef + + + + + View3D + + + + + affiche dans Geom les elements de structure + + + + + Graphique + + + + + affiche la distribution + + + + + Erreur interne + + + + + La PDF de la loi ne peut pas etre affichee. + + + + + &Annuler + + + + + Impossible de supprimer un mot-clef obligatoire + + + + + Mot-clef %s supprime + + + + + Pb interne : impossible de supprimer ce mot-clef + + + + + Definition d'un parametre + + + + + Import du fichier de Configuration + + + + + Erreur a la lecture du fichier de configuration %s + + + + + Erreur fatale au chargement de %s + + + + + Erreur fatale au chargement d'un fichier + + + + + fichier modifie + + + + + Attention! fichier change hors EFICAS + + + + + Type de fichier non reconnu + + + + + EFICAS ne sait pas ouvrir le type de fichier %s + + + + + EFICAS ne sait pas ouvrir ce type de fichier + + + + + Copie impossible + + + + + Veuillez selectionner un objet a copier + + + + + Veuillez selectionner un seul objet : la copie se fera apres le noeud selectionne + + + + + Aucun Objet n a ete copie ou coupe + + + + + Copie refusee + + + + + Eficas n a pas reussi a copier l objet + + + + + Copie refusee pour ce type d objet + + + + + Deplacement refuse + + + + + Deplacement refuse entre 2 fichiers. Seule la copie est autorisee + + + + + Copie impossible a cet endroit + + + + + Veuillez selectionner une commande, un parametre, un commentaire ou une macro + + + + + Choix d'un fichier XML + + + + + Le fichier contient une commande MODEL + + + + + + Donnez le nom du fichier XML qui contient la description des variables + + + + + Ouvrir Fichier + + + + + Erreur a la generation + + + + + EFICAS ne sait pas convertir ce JDC + + + + + Format %s non reconnu + + + + + EFICAS ne sait pas convertir le JDC selon le format + + + + + Execution impossible + + + + + le JDC doit etre valide pour une execution MAP + + + + + le JDC doit contenir un et un seul composant + + + + + le JDC doit etre valide pour une execution + + + + + Sauvegarder SVP avant l'execution + + + + + sauvegarde + + + + + Sauvegarde du Fichier + + + + + Le fichier <b>%s</b> existe deja. + + + + + &Ecraser + + + + + Sauvegarde de l'input impossible + + + + + Un JdC valide est necessaire pour creer un .input + + + + + Choix du composant obligatoire + + + + + Choix unite %d + + + + + Le fichier %s contient une commande INCLUDE + + + + + + Donnez le nom du fichier correspondant a l unite logique + + + + + Fichier pour unite + + + + + Choix d'un fichier de poursuite + + + + + Le fichier %s contient une commande POURSUITE + + + + + + Donnez le nom du fichier dont vous + voulez faire une poursuite + + + + + Fichiers Med (*.med);;Tous les Fichiers (*) + + + + + Fichier Med + + + + + Veuillez selectionner un fichier Med + + + + + reel + + + + + entier + + + + + complexe + + + + + Entrez + + + + + Entrez entre + + + + + et + + + + + Type de base inconnu + + + + + Aide Indisponible + + + + + l'aide n est pas installee + + + + + Visualisation Fichier + + + + + Impossibilite d'afficher le Fichier + + + + + Sauvegarder Fichier + + + + + Fichier selectionne + + + + + Selection + + + + + Export Med vers Fichier + + + + + Impossibilite d exporter le Fichier + + + + + Traduire Fichier + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + Fichier Traduit : %s + + + + + + + Pas de difference entre le fichier origine et le fichier traduit + + + + + objet valide + + + + + %d versions du catalogue sont disponibles + + + + + Sauvegarder le fichier + + + + + Le fichier <b>%(v_1)s</b> n'a pu etre sauvegarde. <br>Raison : %(v_2)s + v_1 + + + + + Options pour + + + + + + valeurs + + + + + Nombre minimal de valeurs : + + + + + Nombre maximal de valeurs : + + + + + expression valide + + + + + expression invalide + + + + + l expression n est pas de la forme a+bj + + + + + expression n est pas de la forme a+bj + + + + + entrer une seule valeur SVP + + + + + saisir le type de complexe + + + + + Valeur du mot-cle enregistree + + + + + Valeur du mot-cle non autorisee + + + + + &Recents + + + + + Aide specifique + + + + + Options + + + + + Traduction + + + + + TraduitV7V8 + + + + + TraduitV8V9 + + + + + TraduitV9V10 + + + + + Acquiert Groupe Maille + + + + + Specificites Maille + + + + + version + + + + + pour + + + + + Parametrage + + + + + Veuillez d abord choisir un code + + + + + Pas de possibilite de personnalisation de la configuration + + + + + &Effacer + + + + + Veuillez entrer le complexe sous forme aster ou sous forme python + + + + + Import du catalogue + + + + + Pas de catalogue defini pour le code + + + + + Aucun catalogue trouve + + + + + Impossible d'importer le catalogue + + + + + avec le catalogue + + + + + Choix d une version du code + + + + + Choix d une version + + + + + Parametre + + + + + Insere un parametre + + + + + item invalide + + + + + l item doit etre valide + + + + + &Ok + &Ok + + + + apres + + + + + Insere un commentaire apres la commande + + + + + avant + + + + + Insere un commentaire avant la commande + + + + + Insere un parametre apres la commande + + + + + Insere un parametre avant la commande + + + + + Supprimer + + + + + supprime le mot clef + + + + + Documentation + + + + + documentation sur la commande + + + + + Documentation Vide + + + + + Aucune documentation n'est associee a ce noeud + + + + + impossible de trouver la commande + + + + + Lecteur PDF + + + + + impossible d'ouvrir + + + + + Commentaire + + + + + ce noeud + + + + + commente le noeud + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + &Quitter + + + + + Quitter + + + + + Fichier Duplique + + + + + Le fichier ne sera pas sauvegarde. + + + + + Fichier + + + + + Le fichier <b>%s</b> est deja ouvert. + + + + + &Duplication + + + + + &Abort + + + + + Fichier Modifie + + + + + Le fichier %s n a pas ete sauvegarde. + + + + + &Sauvegarder + + + + + SOURCE + + + + + EnveloppeConnexeInducteur + + + + + EnveloppeConnexe2 + + + + + VecteurDirecteur + + + + + Centre + + + + + SectionBobine + + + + + Amplitude + + + + + NbdeTours + + + + + CONDUCTEUR + + + + + Conductivite + + + + + PermeabiliteRelative + + + + + NOCOND + + + + + VCUT + + + + + Orientation + + + + + ZS + + + + + PARAMETRES + + + + + RepCarmel + + + + + TypedeFormule + + + + + Frequence + + + + + Nb_Max_Iterations + + + + + Erreur_Max + + + + + PARAMETRE + + + + + Valeur non modifiable + + + + + Format non implemente + + + + + Type d'objet non prevu + + + + + Select + + + + + Sauve Format Ligne + + + + + %s n'est pas un fichier valide + + + + + Fichier de donnees + + + + + Tous les Fichiers (*) + + + + + nb min de valeurs : + + + + + nb max de valeurs atteint + + + + + TraduitV10V11 + + + + + TraduitV11V12 + + + + + Valeur du mot-clef enregistree + + + + + Valeur du mot-clef non autorisee : + + + + + Un concept de nom %s existe déjà ! + + + + + La cardinalite n'est pas correcte, la derniere valeur est ignoree + + + + + n est pas un tuple de + + + + + valeurs + + + + + Valeur incorrecte + + + + + n est pas un identifiant correct + + + + + + Entrer un float SVP + + + + + Entrer un float inferieur a + + + + + Entrer un float superieur a + + + + + Mauvaise execution + + + + + impossible d executer la methode + + + + + Mauvaise Commande + + + + + Aucune variable connue + + + + + Mauvaise dimension de matrice + + + + + le nombre de ligne n est pas egal a + + + + + le nombre de colonne n est pas egal a + + + + + Mauvaise Valeur + + + + + l element + + + + + n est pas correct + + + + + Modification Impossible + + + + + le parametre n'est pas valide + + + + + n est pas un identifiant correct + + + + + Valeur incorrecte: + + + + + Valeur incorrecte + + + + + Valeur correcte + + + + + impossible d'evaluer : + + + + + La formule passee a l'interpreteur doit etre sous forme de tuple + + + + + Debut + + + + + Pas de nom donne au parametre + + + + + Le parametre %s ne peut valoir None + + + + + Format non implemente : %s + + + + + Impossible de realiser la verification de la formule + + + + + Un concept de nom %s existe deja ! + + + + + existe deja + + + + + + Fichier non encore nomme + + + + + La matrice n'a pas le bon entete + + + + + le mot clef + + + + + doit etre insere avant + + + + + insertion impossible + + + + + doit etre insere apres + + + + + Nb maximum de valeurs atteint + + + + + pas de regle de construction pour ce jeu de commandes + + + + + Gestion Maillage + + + + + Acquiert groupe mailles + + + + + Acquisition Groupe Maille + + + + + VERSION + + + + + NUM + + + + + FILETYPE + + + + + PARAMETERS + + + + + Fichier_maillage + + + + + Echelle_du_maillage + + + + + Formulation + + + + + Timeproblem + + + + + spectral + + + + + Basis + + + + + Fourier + + + + + Ordre + + + + + FREQUENCY + + + + + minimisation + + + + + no + + + + + yes + + + + + nb_procs_para + + + + + POLYMER + + + + + MODEL_DATABASE + + + + + Stabilise + + + + + Non Stabilise + + + + + Local + + + + + ESSAI_OPTION + + + + + MATERIEL + + + + + Cable + + + + + Peinture + + + + + Tuyauterie + + + + + Materiau_De_Cable + + + + + PE + + + + + EPDM + + + + + Modele + + + + + Impossible de convertir le fichier Python qui doit contenir des erreurs. + + On retourne le fichier non converti. Prevenir la maintenance. + + %s + + + + + Eficas ne peut pas traiter plusieurs instructions + sur la meme ligne : %s + + + + + le texte a analyser n'est pas celui d'une commande ou + d'un operateur : %s + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + jdc %(v_1)s manque + fichier comm dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier + de commandes %(v_2)s n'existe pas + v_1 + + + + + jdc %(v_1)s + fichier include %(v_2)s, %(v_3)s + n'existe pas + v_1 + + + + + jdc %(v_1)s manque fichier comm + dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier de commandes + %(v_2)s n'existe pas + v_1 + + + + + Objet commande commentarisé invalide + + + + + ATTENTION! Une source constante + n'est possible qu'a frequence nulle + en regime frequentiel + + + + + ERREUR! Une forme de la source du + type WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ATTENTION! Une source constante n'est + possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! Une forme de la source du type + WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe + indiquant le type de materiau ou de source associee + + + + + ERREUR! ce groupe de maille (%(nom)s) n'a pas + le prefixe correct pour etre associe a un type %(type_bloc)s + nom + + + + + + Include Invalide. + ne sera pas pris en compte + + + + + : verifie les types dans un tuple + + + + + Les types entres ne sont pas permis + + + + + ChoixCode + + + Choix du code + + + + + Veuillez choisir un code : + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + ChoixCommandes + + + DMacro + + + + + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Affichage</span></p></body></html> + + + + + affiche les commandes par ordre alphabetique + + + + + Alphabetique + + + + + affiche les commandes selon les thèmes + + + + + Ordre de la modélisation + + + + + Par Groupe + + + + + <html><head/><body><p align="center">Filtre Commande</p></body></html> + + + + + filter commands + + + + + affiche les régles de validité + + + + + ... + + + + + Règles de construction + + + + + Sensible à la casse + + + + + Effacer + + + + + selectionne les mots qui CONTIENNENT l expression + + + + + ré-affiche toutes les commandes + + + + + DChoixCata + + + Choix d'une version du code Aster + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 versions sont disponibles</span></p></body></html> + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + DSelVal + + + Sélection de valeurs + + + + + Separateur + + + + + espace + + + + + virgule + + + + + point-virgule + + + + + Ajouter Selection + + + + + Importer Tout + + + + + DVisu + + + Visualisation Include Materiau + + + + + Eficas + + + MainWindow + + + + + &Fichier + + + + + &Aide + + + + + toolBar + + + + + &Nouveau + ME VOILA + + + + Ctrl+N + + + + + Nouvel Include + + + + + &Ouvrir + + + + + Ctrl+O + + + + + Enregistrer + + + + + Enregistrer sous + + + + + Fermer + + + + + Ctrl+W + + + + + Fermer tout + + + + + Couper + + + + + Ctrl+X + + + + + Copier + + + + + Ctrl+C + + + + + Coller + + + + + Ctrl+V + + + + + Quitter + + + + + Ctrl+Q + + + + + Rapport de Validation + + + + + Fichier Source + + + + + Fichier Résultat + + + + + Parametres Eficas + + + + + Lecteur documentation + + + + + Eficas + + + + + Version + + + + + Supprimer + + + + + Rechercher + + + + + Rechercher dans l'arbre d'etude + + + + + Ctrl+F + + + + + Replier/Deplier + + + + + Tab 1 + + + + + &Edition + + + + + &JeuDeDonnées + + + + + Shift+I + + + + + Ctrl+S + + + + + Ctrl+Shift+S + + + + + Shift+V + + + + + Chercher Mot-Clef + + + + + Rechercher dans le catalogue + + + + + Shift+F + + + + + Shift+D + + + + + Commentaire + + + + + Shift+C + + + + + Paramètres + + + + + Gestion des paramètres + + + + + Shift+P + + + + + Parametre Eficas + + + + + Execution + + + + + Execution + + + + + Save Run + + + + + Patrons + + + + + Run + + + + + &bad + + + + + Régles du JdC + + + + + JDCEditor + + + Save File + + + + + The file <b>%1</b> could not be saved.<br>Reason: %2 + + + + + JDC (*.comm);;All Files (*) + + + + + &Abandonner + &Abandonner + + + + Tuple2 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Tuple3 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Widget4a6RadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetBloc + + + Form + + + + + WidgetCB + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetCommande + + + DCommandeUnique + + + + + Affiche le rapport de validité de la commande + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + + + Lance un script associé à la commande + + + + + ouvre un navigateur sur l'aide contextuelle + + + + + affiche les régles de validité + + + + + Détruit la commande + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + TextLabel + + + + + WidgetCommentaire + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">Commentaire</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + WidgetDate + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetFact + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" font-style:italic;">TextLabel</span></p></body></html> + + + + + WidgetFactPlie + + + Form + + + + + ... + + + + + TextLabel + + + + + WidgetHeure + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetInformative + + + Form + + + + + WidgetOptionnel + + + WidgetOptionnel + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + WidgetParam + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#000000;">Paramètre</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + Verifie la valeur + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetPlusieursBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Sélectionne depuis Salome + + + + + Visualise dans Salome + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + TextLabel + + + + + WidgetPlusieursInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursIntoOrdonne + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + TextLabel + + + + + Remonte d'une ligne + + + + + Descend d'une ligne + + + + + Détruit une ligne + + + + + ajoute une ligne + + + + + visualise l'ensemble des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursPlie + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + + + + + Détruit le mot-clef + + + + + WidgetPlusieursTuple + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + TextLabel + + + + + WidgetRadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetSDCOInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p>Structures de données du type requis </p><p><br/></p></body></html> + + + + + <html><head/><body><p>ou Nom du concept</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBool + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + True + + + + + False + + + + + Détruit le mot-clef + + + + + WidgetSimpComplexe + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Complexe : a+bj + + + + + <html><head/><body><p align="center">OU </p></body></html> + + + + + Réel/Imaginaire + + + + + Module/Phase + + + + + WidgetSimpFichier + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + affiche l'explorateur de fichier + + + + + ouvre le fichier choisi + + + + + Détruit le mot-clef + + + + + WidgetSimpTxt + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple2 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple3 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetUniqueSDCO + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Attend un objet de type CO + + + + + Détruit le mot-clef + + + + + WidgetVide + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0055ff;">Label</span></p></body></html> + + + + + Attend un objet de type XXXX. Il faut le créer + + + + + baseWidget + + + DMacro + + + + + dView + + + Dialog + + + + + Fermer + + + + + Sauver + + + + + desRecherche + + + Rechercher dans le JDC + + + + + Next + + + + + Suivant + + + + + desWidgetCreeParam + + + Gestion des Paramètres + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p><span style=" text-decoration: underline;">Créer un paramètre</span></p></body></html> + + + + + desWidgetMatrice + + + Dialog + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>Met à jour l'en-tête</p></body></html> + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + self.appliEficas + + + Wrapper Files (*.xml);;All Files (*) + + + + + Noname + + + + + viewRegles + + + Dialog + + + + diff --git a/UiQT4/eficas_fr.ts b/UiQT4/eficas_fr.ts index 22d9c577..d93d2f5b 100644 --- a/UiQT4/eficas_fr.ts +++ b/UiQT4/eficas_fr.ts @@ -2,6 +2,334 @@ @default + + Year + Annee + + + Month + Mois + + + Day + Jour + + + Hour + Heure + + + Minute + Minute + + + Second + Seconde + + + Discretizations_In_Space + Discretisations_En_Espace + + + Discretizations_In_Space_Tracers + Discretisations_En_Espace_Tracers + + + Discretizations_In_Space_U_And_V + Discretisations_En_Espace_U_And_V + + + Discretizations_In_Space_K_And_Epsilon + Discretisations_En_Espace_K_And_Epsilon + + + Discretizations_In_Space_H + Discretisations_En_Espace_H + + + Supg_Option + Option_De_Supg + + + Supg_Option_Tracers + Option_De_Supg_Tracers + + + Supg_Option_U_And_V + Option_De_Supg_U_And_V + + + Supg_Option_K_And_Epsilon + Option_De_Supg_K_And_Epsilon + + + Supg_Option_H + Option_De_Supg_H + + + Type_Of_Advection + Forme_De_La_Convection + + + Forme_De_La_Convection + Type_Of_Advection + + + Type_Of_Advection_Tracers + Forme_De_La_Convection_Tracers + + + Type_Of_Advection_U_And_V + Forme_De_La_Convection_U_And_V + + + Type_Of_Advection_K_And_Epsilon + Forme_De_La_Convection_K_And_Epsilon + + + Type_Of_Advection_H + Forme_De_La_Convection_H + + + Hauteur constante + Constant depth + + + Mass_Lumping_On_H + Mass_Lumping_Sur_H + + + Mass_Lumping_On_Velocity + Mass_Lumping_Sur_La_Vitesse + + + Mass_Lumping_On_Tracers + Mass_Lumping_Sur_Les_Traceurs + + + Mass_Lumping_For_Weak_Characteristics + Mass_Lumping_Pour_Les_Caracteristiques_Faibles + + + INITIALIZATION + INITIALISATION + + + Input_Files + Fichiers_D_Entree + + + Formatted_And_Binary_Files + Fichiers_Formates_Et_Binaires + + + Initial_State + Etat_Initial + + + Coupling + Couplage + + + Mass_Balance + Bilan_De_Masse + + + BOUNDARY_CONDITIONS + CONDITIONS_AUX_LIMITES + + + NUMERICAL_PARAMETERS + PARAMETRES_NUMERIQUES + + + PHYSICAL_PARAMETERS + PARAMETRES_PHYSIQUES + + + OUTPUT_FILES + FICHIERS_DE_SORTIE + + + CONSTRUCTION_WORKS_MODELLING + MODELISATION_DES_OUVRAGES + + + GENERAL_PARAMETERS + PARAMETRES_GENERAUX + + + PARTICLE_TRANSPORT + TRANSPORT_DE_PARTICULE + + + Computation_Continued_Settings + Parametres_De_Continuation_Du_Calcul + + + Inputs_Outputs_For_Tide + Entrees_Sorties_Pour_La_Maree + + + Location + Localisation + + + Physical_Parameters + Parametres_Physiques + + + Liquid_Boundaries + Frontieres_Liquide + + + Solver_Definition + Definition_Du_Solver + + + Linearity + Linearite + + + Precondionning_Setting + Parametres_Preconditionnement + + + Matrix_Informations + Stockage_Des_Matrices + + + Advection + Advection + + + Propagation + Propagation + + + Diffusion + Diffusion + + + Discretization_Implicitation + Discretisation + + + Tidal + Maree + + + Various + Divers + + + Friction_Setting + Parametres_De_Friction + + + Meteorology + Meteorologie + + + Wave + Houle + + + Parameters_Estimation + Parametres_A_Estimer + + + Tolerances_For_Identification + Tolerances_Pour_L_Identification + + + Sources + Sources + + + Coriolis_Settings + Parametres_Pour_Coriolis + + + Various_For_Numerical + Divers_Parametres_Numeriques + + + Secondary_Currents_Settings + Parametres_Pour_Les_Courants_Secondaires + + + Tsunami + Tsunami + + + Graphic_And_Listing_Printouts + Sorties_Listing_Et_Graphiques + + + Controls + Controles + + + Fourier + Fourier + + + General_Location + Localisation_Generale + + + Time + Temps + + + Original_Date_Of_Time + Date_A_L_Origine + + + Original_Hour_Of_Time + Temps_A_L_Origine + + + Limit_Values + Valeurs_Limites + + + Tracers_Setting + Parametres_Des_Traceurs + + + Tracer + Traceur + + + Boundary_Conditions_For_Tracers + Conditions_Aux_Limites_Pour_Les_Traceurs + + + Solving + + + + Accuracy + + + + Source + Source + + + Metereology + Metereologie + + + Numerical + Numerique + + + Degradation + Degradation + Values_Of_Tracers_In_The_Rain Valeurs_Des_Traceurs_Dans_La_Pluie @@ -28,7 +356,7 @@ Origin_Coordinates - Coordonnees_De_L'origine + Coordonnees_De_L_Origine Thickness_Of_Algae @@ -60,7 +388,7 @@ Oil_Spill_Model - Modele_De_Nappes_D'hydrocarbures + Modele_De_Nappes_D_Hydrocarbures Definition_Of_Zones @@ -86,6 +414,10 @@ Option_For_Tidal_Boundary_Conditions Option_Pour_Les_Conditions_Aux_Limites_De_Maree + + Option_For_Liquid_Boundaries + Option_Pour_Les_Frontieres_Liquides + Coefficient_To_Calibrate_Tidal_Velocities Coefficient_De_Calage_Des_Vitesses_De_Courant @@ -96,7 +428,7 @@ Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers - Maximum_D'iterations_Pour_La_Diffusion_Des_Traceurs + Maximum_D_Iterations_Pour_La_Diffusion_Des_Traceurs Binary_Results_File @@ -152,7 +484,7 @@ Implicitation_Coefficient_Of_Tracers - Coefficient_D'implicitation_Des_Traceurs + Coefficient_D_Implicitation_Des_Traceurs Formatted_Results_File @@ -176,7 +508,7 @@ Coefficient_Of_Wind_Influence - Coefficient_D'influence_Du_Vent + Coefficient_D_Influence_Du_Vent Depth_In_Friction_Terms @@ -212,7 +544,7 @@ Original_Date_Of_Time - Date_De_L'origine_Des_Temps + Date_De_L_origine_Des_Temps Mean_Temperature @@ -248,7 +580,7 @@ Listing_Printout_Period - Periode_Pour_Les_Sorties_Listing + Periode_De_Sortie_Listing Initial_Guess_For_H @@ -284,7 +616,7 @@ Elements_Masked_By_User - Elements_Masques_Par_L'utilisateur + Elements_Masques_Par_L_Utilisateur Control_Sections @@ -312,7 +644,7 @@ Maximum_Number_Of_Iterations_For_Identification - Maximum_D'iterations_Pour_L'identification + Maximum_D_Iterations_Pour_L_Identification Coefficient_For_Diffusion_Of_Tracers @@ -348,7 +680,7 @@ Original_Hour_Of_Time - Heure_De_L'origine_Des_Temps + Heure_De_L_origine_Des_Temps Law_Of_Friction_On_Lateral_Boundaries @@ -362,10 +694,6 @@ Solver_For_Diffusion_Of_Tracers Solveur_Pour_La_Diffusion_Des_Traceurs - - Discretizations_In_Space - Discretisations_En_Espace - Solver_Option Option_Du_Solveur @@ -396,7 +724,7 @@ Identification_Method - Methode_D'identification + Methode_D_Identification Names_Of_Points @@ -410,17 +738,21 @@ Matrix_Storage Stockage_Des_Matrices + + Matrix_Vector_Product + Produit_Matrice_Vecteur + Algae_Type Type_Des_Algues Water_Density - Masse_Volumique_De_L'eau + Masse_Volumique_De_L_Eau Newmark_Time_Integration_Coefficient - Coefficient_D'integration_En_Temps_De_Newmark + Coefficient_D_Integration_En_Temps_De_Newmark Friction_Data_File @@ -430,10 +762,6 @@ Implicitation_For_Diffusion_Of_Velocity Implicitation_Pour_La_Diffusion_Des_Vitesses - - Limit_Values - Valeurs_Limites - Advection Convection @@ -492,7 +820,7 @@ Time_Range_For_Fourier_Analysis - Bornes_En_Temps_Pour_L'analyse_De_Fourier + Bornes_En_Temps_Pour_L_Analyse_De_Fourier Graphic_Printout_Period @@ -556,7 +884,7 @@ Fourier_Analysis_Periods - Periodes_D'analyse_De_Fourier + Periodes_D_Analyse_De_Fourier H_Clipping @@ -564,7 +892,7 @@ Tolerances_For_Identification - Precisions_Pour_L'identification + Precisions_Pour_L_Identification Previous_Computation_File_Format @@ -610,10 +938,6 @@ Diffusion_Of_Velocity Diffusion_Des_Vitesses - - Type_Of_Advection - Forme_De_La_Convection - Solver_Option_For_Tracers_Diffusion Option_Du_Solveur_Pour_La_Diffusion_Des_Traceurs @@ -636,7 +960,7 @@ Maximum_Number_Of_Iterations_For_K_And_Epsilon - Maximum_D'iterations_Pour_K_Et_Epsilon + Maximum_D_Iterations_Pour_K_Et_Epsilon Tidal_Data_Base @@ -644,7 +968,7 @@ Maximum_Number_Of_Iterations_For_Solver - Maximum_D'iterations_Pour_Le_Solveur + Maximum_D_Iterations_Pour_Le_Solveur Number_Of_Tracers @@ -724,7 +1048,7 @@ Maximum_Number_Of_Iterations_For_Advection_Schemes - Maximum_D'iterations_Pour_Les_Schemas_De_Convection + Maximum_D_Iterations_Pour_Les_Schemas_De_Convection Turbulence_Model_For_Solid_Boundaries @@ -748,7 +1072,7 @@ Record_Number_In_Wave_File - Numero_De_L'enregistrement_Dans_Le_Fichier_De_Houle + Numero_De_L_Enregistrement_Dans_Le_Fichier_De_Houle Abscissae_Of_Sources @@ -792,7 +1116,7 @@ Stop_Criteria - Criteres_D'arret + Criteres_D_Arret Prescribed_Velocities @@ -3220,7 +3544,7 @@ p, li { white-space: pre-wrap; } &Nouveau - ME VOILA + diff --git a/UiQT5/desChoixCommandes.ui b/UiQT5/desChoixCommandes.ui index e8c99040..be67512d 100644 --- a/UiQT5/desChoixCommandes.ui +++ b/UiQT5/desChoixCommandes.ui @@ -32,16 +32,7 @@ 0 - - 2 - - - 2 - - - 2 - - + 2 @@ -74,15 +65,6 @@ QFrame::Raised - - 0 - - - 0 - - - 0 - @@ -322,9 +304,6 @@ border-radius : 12px - - QLayout::SetFixedSize - @@ -381,14 +360,27 @@ border-radius : 12px - 20 - 40 + 168 + 13 + + + + Qt::Horizontal + + + + 173 + 20 + + + + diff --git a/UiQT5/desViewRegles.ui b/UiQT5/desViewRegles.ui index 03938cd2..1742aa92 100644 --- a/UiQT5/desViewRegles.ui +++ b/UiQT5/desViewRegles.ui @@ -6,15 +6,22 @@ 0 0 - 411 - 322 + 283 + 250 Dialog - - + + + + + Fermer + + + + QFrame::NoFrame @@ -27,8 +34,8 @@ 0 0 - 393 - 304 + 265 + 194 @@ -45,6 +52,19 @@ + + + + Qt::Horizontal + + + + 171 + 20 + + + + diff --git a/UiQT5/desWidgetCommande.ui b/UiQT5/desWidgetCommande.ui index ac31d2d3..0a1d990f 100644 --- a/UiQT5/desWidgetCommande.ui +++ b/UiQT5/desWidgetCommande.ui @@ -6,8 +6,8 @@ 0 0 - 1290 - 540 + 1353 + 596 @@ -36,16 +36,7 @@ font : 'times' 9px 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -77,168 +68,149 @@ font : 'times' 9px QFrame::Raised - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - - - - - 0 - 0 - - - - QFrame::Box - - - QFrame::Raised - - - - 0 - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 17 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Affiche le rapport de validité de la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/ast-green-ball.png../Editeur/icons/ast-green-ball.png - - - - 21 - 31 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 0 - 0 - - - - - 150 - 31 - - - - QFrame::NoFrame - - - QFrame::Raised - - - <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> - - - - - - - Qt::Horizontal - - - QSizePolicy::Maximum - - - - 2 - 40 - - - - - - - - - 0 - 0 - - - - Nom de l'objet. Seuls, les objets valides peuvent être nommés - - - QLineEdit { + + + + + + 0 + 0 + + + + QFrame::Box + + + QFrame::Raised + + + + 0 + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 17 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Affiche le rapport de validité de la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/ast-green-ball.png../Editeur/icons/ast-green-ball.png + + + + 21 + 31 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 0 + 0 + + + + + 150 + 31 + + + + QFrame::NoFrame + + + QFrame::Raised + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + + + Qt::Horizontal + + + QSizePolicy::Maximum + + + + 2 + 40 + + + + + + + + + 0 + 0 + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + QLineEdit { border: 2px solid gray; border-radius: 10px; padding: 0 8px; @@ -251,384 +223,402 @@ QLineEdit:disabled } /*read-only { background: lightblue;*/ - - - false - - - - - - - Qt::Horizontal - - - - 108 - 20 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Ignored - - - - 2 - 40 - - - - - - - - 4 - - - QLayout::SetFixedSize - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Lance un script associé à la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/roue.png../Editeur/icons/roue.png - - - - 21 - 31 - - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - ouvre un navigateur sur l'aide contextuelle - - - border : 0px - - - ... - - - - ../Editeur/icons/point-interrogation30.png../Editeur/icons/point-interrogation30.png - - - - 21 - 31 - - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - affiche les régles de validité - - - border : 0px - - - ... - - - - ../Editeur/icons/lettreRblanc30.png../Editeur/icons/lettreRblanc30.png - - - - 21 - 31 - - - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 13 - 20 - - - - - - - - - 21 - 31 - - - - - 21 - 31 - - - - Qt::ClickFocus - - - Détruit la commande - - - border : 0px - - - ... - - - - ../Editeur/icons/deleteRond.png../Editeur/icons/deleteRond.png - - - - 21 - 31 - - - - - - RBValide - labelNomCommande - LENom - horizontalSpacer_3 - horizontalSpacer_4 - RBPoubelle - horizontalSpacer_5 - horizontalSpacer_7 - - - - - - TextLabel - - - - - - - - - 8 - - - 15 - - - - - - 0 - 0 - - - - - 160 - 31 - - - - Qt::ClickFocus - - - Affiche les commandes possibles - - - background-color:rgb(104,110,149); + + + false + + + + + + + Qt::Horizontal + + + + 108 + 20 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Ignored + + + + 2 + 40 + + + + + + + + 4 + + + QLayout::SetFixedSize + + + + + + 21 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Lance un script associé à la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/roue.png../Editeur/icons/roue.png + + + + 21 + 31 + + + + + + + + + 0 + 0 + + + + + 0 + 38 + + + + true + + + + + + + + 21 + 31 + + + + + 31 + 31 + + + + Qt::ClickFocus + + + ouvre un navigateur sur l'aide contextuelle + + + border : 0px + + + ... + + + + ../Editeur/icons/point-interrogation.png../Editeur/icons/point-interrogation.png + + + + 21 + 31 + + + + + + + + + 21 + 31 + + + + + 31 + 31 + + + + Qt::ClickFocus + + + affiche les régles de validité + + + border : 0px + + + ... + + + + ../Editeur/icons/lettreRblanc30.png../Editeur/icons/lettreRblanc30.png + + + + 21 + 31 + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 13 + 20 + + + + + + + + + 21 + 31 + + + + + 21 + 31 + + + + Qt::ClickFocus + + + Détruit la commande + + + border : 0px + + + ... + + + + ../Editeur/icons/deleteRond.png../Editeur/icons/deleteRond.png + + + + 21 + 31 + + + + + + RBValide + labelNomCommande + LENom + horizontalSpacer_3 + horizontalSpacer_4 + RBPoubelle + horizontalSpacer_5 + horizontalSpacer_7 + + + + + + + 0 + 0 + + + + + 160 + 40 + + + + Qt::ClickFocus + + + Affiche les commandes possibles + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - &Commandes - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - - - - - 0 - 0 - - - - - 60 - 24 - - - - - 60 - 24 - - - - Qt::ClickFocus - - - Affiche le formulaire de la commande précédente - - - background-color:rgb(104,110,149); + + + &Commandes + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + TextLabel + + + + + + + + + + 0 + 0 + + + + + 60 + 24 + + + + + 60 + 24 + + + + Qt::ClickFocus + + + Affiche le formulaire de la commande précédente + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - << - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - - - 0 - 0 - - - - - 60 - 24 - - - - - 60 - 24 - - - - Qt::ClickFocus - - - Affiche le formulaire de la commande suivante - - - background-color:rgb(104,110,149); + + + << + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + + 0 + 0 + + + + + 60 + 24 + + + + + 60 + 24 + + + + Qt::ClickFocus + + + Affiche le formulaire de la commande suivante + + + background-color:rgb(104,110,149); color :white; border-radius : 12px - - - >> - - - Shift+A, Alt+A, Alt+A, Alt+A - - - true - - - true - - - - - - + + + >> + + + Shift+A, Alt+A, Alt+A, Alt+A + + + true + + + true + + + + + + + Qt::Vertical + + + + 20 + 18 + + + @@ -666,8 +656,8 @@ border-radius : 12px 0 0 - 1290 - 410 + 1353 + 466 diff --git a/UiQT5/eficas_avec_des_intos_bizarre.ts b/UiQT5/eficas_avec_des_intos_bizarre.ts new file mode 100644 index 00000000..faf45ec4 --- /dev/null +++ b/UiQT5/eficas_avec_des_intos_bizarre.ts @@ -0,0 +1,5826 @@ + + + + + @default + + 1 but with porosity (defina method) + 1 avec Porosite + + + 1/h Div ( h nu grad(T) + + + + 1 point + + + + 3 points + + + + 6 points + + + + Air pressure (Pa) + Pression Atmosphérique (Pa) + + + Astronomical neap tide + + + + Astronomical tide + + + + Average + Moyenne + + + Bottom elevation (m) + + + + Boussinesq + + + + Cartesian, not georeferenced + Cartésien, non georeference + + + CGSTAB + + + + Characteristics + Caracteristiques + + + Chezy + + + + Chezy coefficient + + + + Classic + + + + Classical boundary conditions + Classique + + + Classical EBE + + + + Classical SUPG + + + + Coefficient de Chezy + + + + Coefficient de Manning + + + + Coefficient de Strickler + + + + Colebrook-white + + + + Conj gradient + + + + Conjugate gradient + + + + Conjugate gradient on a normal equation + + + + Conjugate gradient on normal equation + + + + Conjugate gradient squared + + + + Conjugate gradient squared stabilised (CGSTAB) + + + + Conjugate residual + + + + Conjugate residuals + + + + Conservative N-scheme + + + + Conservative PSI-scheme + + + + Constant depth + Hauteur constante + + + Constant elevation + Cote constante + + + Constant in time and space + + + + Constant normal profile + + + + Constant viscosity + + + + Coupled + + + + Courant number + + + + Crout + + + + Defined by user + + + + Diagonal + + + + Diagonal and Crout + + + + Diagonal condensed + + + + Diagonal condensed and Crout + + + + Diagonal condensee + + + + Dirac + + + + Direct + + + + Dissipation of turbulent energy (W/kg) + + + + Div( nu grad(T) ) + + + + Drift along X (m) + + + + Drift along Y (m) + + + + Dry elements frozen + + + + Edge-based N-scheme + + + + Edge-based storage + + + + Elder + + + + Equations solved everywhere with correction on tidal flats + + + + Euler explicit + + + + Explicit + + + + Explicit leo postma + + + + Explicit + murd scheme N + + + + Explicit + murd scheme PSI + + + + Explicit + SUPG + + + + Extrapolation + + + + Flowrate along X axis (m2/s) + + + + Flowrate along Y axis (m2/s) + + + + Flux control + + + + Free surface elevation (m) + + + + Friction + + + + Friction coefficient + + + + Friction velocity + + + + Frontal + + + + Frottement + + + + Froude number + + + + Froude number + + + + F(T90) law + + + + Gauss-Seidel + + + + General (New solution with sources points) + + + + Gigartina leptorhynchos + + + + GMRES + + + + Gradient simple + + + + Haaland + + + + Hauteur de rugosite de Nikuradse + + + + HLLC scheme order 1 + + + + Horizontal with same number of nodes upstream/downstream (Historical solution with bord) + + + + Implicit non conservative N-scheme + + + + Iridaea flaccida (close to ulva) + + + + JMJ + + + + K-Epsilon Model + + + + kinetic order 1 + + + + kinetic order 2 + + + + Lagrange interp. + + + + Lambert + + + + Lambert 1 north + + + + Lambert 2 center + + + + Lambert 2 extended + + + + Lambert 3 south + + + + Lambert 4 corsica + + + + Latitude longitude + + + + Leo postma for tidal flats + + + + Linear + + + + Linear coefficient + + + + List of tests + + + + Log law + + + + Manning + + + + Manning coefficient + + + + Maximum elevation + + + + Maximum velocity + + + + Mean neap tide + + + + Mean spring tide + + + + Mean tide + + + + 'MED' + + + + Mercator + + + + Minimum error + + + + Miscellaneous (LEGOS-NEA, FES20XX, PREVIMER...) + + + + Modified SUPG + + + + Nikuradse + + + + Nikuradse grain size + + + + No advection + + + + Nodal + + + + No degradation + + + + No friction + + + + Nombre de courants + + + + No model + + + + Non conservative PSI-scheme + + + + Non programme + + + + No one + + + + No preconditioning + + + + No preconditioning + + + + Normal + + + + Normal velocity given in ubor in the conlim file + + + + No tide + + + + No treatment + + + + No Tsunami + + + + No upwinding + + + + No wind + + + + N-scheme for tidal flats + + + + order 2 in time + + + + Pelvetiopsis limitata + + + + predictor-corrector + + + + Predictor-corrector + + + + Previous + + + + Priority to fluxes + + + + Priority to prescribed values + + + + QRT(depth) profile, variant + + + + Quadratic + + + + Quasi-bubble + + + + Q(Z) + + + + Real tide (methodology before 2010) + + + + Real tide (recommended methodology) + + + + Roe scheme + + + + Rough + + + + Saint-Venant EF + + + + Saint-Venant VF + + + + Scalar flowrate of fluid (m2/s) + + + + Scalar velocity (m/s) + + + + 'Serafin' + + + + 'SerafinD' + + + + Smagorinski + + + + Smooth + + + + Smoothing + + + + Special + Particulieres + + + Sphere + + + + Squared conjugate gradient + + + + Steady + + + + Strickler + + + + Strickler coefficient + + + + Strong + + + + SUPG + + + + Supplementary variable N + + + + Supplementary variable N + + + + Supplementary variable O + + + + Supplementary variable O + + + + Supplementary variable R + + + + Supplementary variable R + + + + Supplementary variable Z + + + + Supplementary variable Z + + + + Tchamen scheme order 1 + + + + Thompson method based on characteristics + + + + Time of maximum elevation + + + + Time of maximum velocity + + + + TPXO + + + + TPXO satellite altimetry + Altimetrie satellite TPXO + + + Tracer + Traceur + + + Tracer 1 etc. + + + + Tsunami generated on the basis of the Okada model 1992 + + + + Turbulent kinetic energy in k-epsilon model (J/kg) + + + + Turbulent viscosity of k-epsilon model (m2/s) + + + + U and V given in the conlim file + + + + UTM zone, E.G. + + + + Variable in time and (constant in space) + + + + Variable in time and space + + + + Velocity along X axis (m/s) + + + + Velocity along Y axis (m/s) + + + + Velocity proportional to square root of depth + + + + Velocity proportional to square root of depth, variant + + + + WAF scheme order 2 + + + + Water depth (m) + + + + Wave celerity (m/s) + + + + Wave equation + + + + Weak + + + + WGS84 longitude/latitude in real degrees + WGS84 longitude/latitude en degres reels + + + WGS84 northern UTM + WGS84 nord UTM + + + WGS84 southern UTM + WGS84 sud UTM + + + Wind along X axis (m/s) + + + + Wind along Y axis (m/s) + + + + Zero + + + + Zero depth + Hauteur nulle + + + Zero elevation + Cote nulle + + + Zokagoa scheme order 1 + + + + Z(Q) + + + + Mass_Lumping_On_H + Mass_Lumping_Sur_H + + + Mass_Lumping_On_Velocity + Mass_Lumping_Sur_La_Vitesse + + + Mass_Lumping_On_Tracers + Mass_Lumping_Sur_Les_Traceurs + + + Mass_Lumping_For_Weak_Characteristics + Mass_Lumping_Pour_Les_Caracteristiques_Faibles + + + INITIALIZATION + INITIALISATION + + + Input_Files + Fichiers_D_Entree + + + Formatted_And_Binary_Files + Fichiers_Formates_Et_Binaires + + + Initial_State + Etat_Initial + + + Coupling + Couplage + + + Mass_Balance + Bilan_De_Masse + + + BOUNDARY_CONDITIONS + CONDITIONS_AUX_LIMITES + + + NUMERICAL_PARAMETERS + PARAMETRES_NUMERIQUES + + + PHYSICAL_PARAMETERS + PARAMETRES_PHYSIQUES + + + OUTPUT_FILES + FICHIERS_DE_SORTIE + + + CONSTRUCTION_WORKS_MODELLING + MODELISATION_DES_OUVRAGES + + + GENERAL_PARAMETERS + PARAMETRES_GENERAUX + + + PARTICLE_TRANSPORT + TRANSPORT_DE_PARTICULE + + + Computation_Continued_Settings + Parametres_De_Continuation_Du_Calcul + + + Inputs_Outputs_For_Tide + Entrees_Sorties_Pour_La_Maree + + + Location + Localisation + + + Physical_Parameters + Parametres_Physiques + + + Liquid_Boundaries + Frontieres_Liquide + + + Solver_Definition + Definition_Du_Solver + + + Linearity + Linearite + + + Precondionning_Setting + Parametres_Preconditionnement + + + Matrix_Informations + Stockage_Des_Matrices + + + Advection + Advection + + + Propagation + Propagation + + + Diffusion + Diffusion + + + Discretization_Implicitation + Discretisation + + + Tidal + Maree + + + Various + Divers + + + Friction_Setting + Parametres_De_Friction + + + Meteorology + Meteorologie + + + Wave + Houle + + + Parameters_Estimation + Parametres_A_Estimer + + + Tolerances_For_Identification + Tolerances_Pour_L_Identification + + + Sources + Sources + + + Coriolis_Settings + Parametres_Pour_Coriolis + + + Various_For_Numerical + Divers_Parametres_Numeriques + + + Secondary_Currents_Settings + Parametres_Pour_Les_Courants_Secondaires + + + Tsunami + Tsunami + + + Graphic_And_Listing_Printouts + Sorties_Listing_Et_Graphiques + + + Controls + Controles + + + Fourier + Fourier + + + General_Location + Localisation_Generale + + + Time + Temps + + + Original_Date_Of_Time + Date_A_L_Origine + + + Original_Hour_Of_Time + Temps_A_L_Origine + + + Limit_Values + Valeurs_Limites + + + Tracers_Setting + Parametres_Des_Traceurs + + + Boundary_Conditions_For_Tracers + Conditions_Aux_Limites_Pour_Les_Traceurs + + + Solving + + + + Accuracy + + + + Source + Source + + + Metereology + Metereologie + + + Numerical + Numerique + + + Degradation + Degradation + + + Values_Of_Tracers_In_The_Rain + Valeurs_Des_Traceurs_Dans_La_Pluie + + + Threshold_Depth_For_Receding_Procedure + Profondeur_Limite_Pour_Procedure_De_Ressuyage + + + Title + Titre + + + Spatial_Projection_Type + Type_De_Projection_Spatiale + + + Stochastic_Diffusion_Model + Modele_De_Diffusion_Stochastique + + + Drogues_File + Fichier_Des_Flotteurs + + + Origin_Coordinates + Coordonnees_De_L_Origine + + + Thickness_Of_Algae + Epaisseur_Des_Algues + + + Velocities_Of_The_Sources_Along_X + Vitesses_Des_Sources_Selon_X + + + Velocities_Of_The_Sources_Along_Y + Vitesses_Des_Sources_Selon_Y + + + Finite_Volume_Scheme + Schema_En_Volumes_Finis + + + Density_Of_Algae + Masse_Volumique_Des_Algues + + + Geometry_File + Fichier_De_Geometrie + + + Turbulence_Model + Modele_De_Turbulence + + + Oil_Spill_Model + Modele_De_Nappes_D_Hydrocarbures + + + Definition_Of_Zones + Definition_De_Zones + + + Rain_Or_Evaporation + Pluie_Ou_Evaporation + + + Sources_File + Fichier_Des_Sources + + + Friction_Coefficient + Coefficient_De_Frottement + + + Wind + Vent + + + Option_For_Tidal_Boundary_Conditions + Option_Pour_Les_Conditions_Aux_Limites_De_Maree + + + Coefficient_To_Calibrate_Tidal_Velocities + Coefficient_De_Calage_Des_Vitesses_De_Courant + + + Initial_Time_Set_To_Zero + Remise_A_Zero_Du_Temps + + + Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers + Maximum_D_Iterations_Pour_La_Diffusion_Des_Traceurs + + + Binary_Results_File + Fichier_De_Resultats_Binaire + + + Number_Of_Drogues + Nombre_De_Flotteurs + + + Air_Pressure + Pression_Atmospherique + + + Mean_Depth_For_Linearization + Profondeur_Moyenne_Pour_La_Linearisation + + + Control_Of_Limits + Controle_Des_Limites + + + Free_Surface_Gradient_Compatibility + Compatibilite_Du_Gradient_De_Surface_Libre + + + Prescribed_Tracers_Values + Valeurs_Imposees_Des_Traceurs + + + defaut + Saint-venant_Ef + + + Velocity_Diffusivity + Coefficient_De_Diffusion_Des_Vitesses + + + Time_Step + Pas_De_Temps + + + Validation + Validation + + + Roughness_Coefficient_Of_Boundaries + Coefficient_De_Rugosite_Des_Bords + + + Density_Effects + Effets_De_Densite + + + Implicitation_Coefficient_Of_Tracers + Coefficient_D_Implicitation_Des_Traceurs + + + Formatted_Results_File + Fichier_De_Resultats_Formate + + + Debugger + Debugger + + + Liquid_Boundaries_File + Fichier_Des_Frontieres_Liquides + + + Sections_Output_File + Fichier_De_Sortie_Des_Sections_De_Controle + + + Number_Of_Private_Arrays + Nombre_De_Tableaux_Prives + + + Coefficient_Of_Wind_Influence + Coefficient_D_Influence_Du_Vent + + + Depth_In_Friction_Terms + Hauteur_Dans_Les_Termes_De_Frottement + + + Coefficient_To_Calibrate_Sea_Level + Coefficient_De_Calage_Du_Niveau_De_Mer + + + Variables_To_Be_Printed + Variables_A_Imprimer + + + Preconditioning + Preconditionnement + + + Cost_Function + Fonction_Cout + + + Type_Of_Sources + Type_Des_Sources + + + Tidal_Flats + Bancs_Decouvrants + + + Ascii_Database_For_Tide + Base_Ascii_De_Donnees_De_Maree + + + Original_Date_Of_Time + Date_De_L_origine_Des_Temps + + + Mean_Temperature + Temperature_Moyenne + + + Initial_Elevation + Cote_Initiale + + + Tubes_Data_File + Fichier_De_Donnees_Des_Buses + + + Boundary_Conditions_File + Fichier_Des_Conditions_Aux_Limites + + + Breach + Breche + + + Treatment_Of_The_Linear_System + Traitement_Du_Systeme_Lineaire + + + Prescribed_Elevations + Cotes_Imposees + + + List_Of_Points + Liste_De_Points + + + Listing_Printout_Period + Periode_De_Sortie_Listing + + + Initial_Guess_For_H + Ordre_Du_Tir_Initial_Pour_H + + + Geometry_File_Format + Format_Du_Fichier_De_Geometrie + + + Coefficient_1_For_Law_Of_Tracers_Degradation + Coefficient_1_De_La_Loi_De_Degradation_Des_Traceurs + + + Number_Of_Lagrangian_Drifts + Nombre_De_Derives_Lagrangiennes + + + Weirs_Data_File + Fichier_De_Donnees_Des_Seuils + + + Rain_Or_Evaporation_In_Mm_Per_Day + Pluie_Ou_Evaporation_En_Mm_Par_Jour + + + Minor_Constituents_Inference + Interpolation_De_Composantes_Mineures + + + Maximum_Number_Of_Friction_Domains + Nombre_Maximum_De_Domaines_De_Frottement + + + Elements_Masked_By_User + Elements_Masques_Par_L_Utilisateur + + + Control_Sections + Sections_De_Controle + + + Number_Of_Time_Steps + Nombre_De_Pas_De_Temps + + + Solver_Accuracy + Precision_Du_Solveur + + + Wave_Driven_Currents + Courants_De_Houle + + + Number_Of_Culverts + Nombre_De_Siphons + + + Equations + Equations + + + Maximum_Number_Of_Iterations_For_Identification + Maximum_D_Iterations_Pour_L_Identification + + + Coefficient_For_Diffusion_Of_Tracers + Coefficient_De_Diffusion_Des_Traceurs + + + Option_For_The_Diffusion_Of_Velocities + Option_Pour_La_Diffusion_Des_Vitesses + + + Coefficient_To_Calibrate_Tidal_Range + Coefficient_De_Calage_Du_Marnage + + + Binary_Data_File_1 + Fichier_De_Donnees_Binaire_1 + + + Binary_Data_File_2 + Fichier_De_Donnees_Binaire_2 + + + Solver + Solveur + + + Implicitation_For_Velocity + Implicitation_Pour_La_Vitesse + + + Longitude_Of_Origin_Point + Longitude_Du_Point_Origine + + + Original_Hour_Of_Time + Heure_De_L_origine_Des_Temps + + + Law_Of_Friction_On_Lateral_Boundaries + Loi_De_Frottement_Sur_Les_Parois_Laterales + + + Propagation + Propagation + + + Solver_For_Diffusion_Of_Tracers + Solveur_Pour_La_Diffusion_Des_Traceurs + + + Discretizations_In_Space + Discretisations_En_Espace + + + Solver_Option + Option_Du_Solveur + + + Advection_Of_H + Convection_De_H + + + Output_Of_Initial_Conditions + Sortie_Des_Conditions_Initiales + + + Record_Number_For_Restart + Enregistrement_Pour_Suite_De_Calcul + + + Accuracy_For_Diffusion_Of_Tracers + Precision_Pour_La_Diffusion_Des_Traceurs + + + Initial_Guess_For_U + Ordre_Du_Tir_Initial_Pour_U + + + Advection_Of_K_And_Epsilon + Convection_De_K_Et_Epsilon + + + Identification_Method + Methode_D_Identification + + + Names_Of_Points + Noms_Des_Points + + + Zone_Number_In_Geographic_System + Numero_De_Fuseau_Ou_Projection_Dans_Le_Systeme_Geographique + + + Matrix_Storage + Stockage_Des_Matrices + + + Algae_Type + Type_Des_Algues + + + Water_Density + Masse_Volumique_De_L_Eau + + + Newmark_Time_Integration_Coefficient + Coefficient_D_Integration_En_Temps_De_Newmark + + + Friction_Data_File + Fichier_De_Donnees_Pour_Le_Frottement + + + Implicitation_For_Diffusion_Of_Velocity + Implicitation_Pour_La_Diffusion_Des_Vitesses + + + Advection + Convection + + + Geographic_System + Systeme_Geographique + + + Results_File + Fichier_Des_Resultats + + + Algae_Transport_Model + Modele_De_Transport_Des_Algues + + + Treatment_Of_Negative_Depths + Traitement_Des_Hauteurs_Negatives + + + Ordinates_Of_Sources + Ordonnees_Des_Sources + + + Coriolis_Coefficient + Coefficient_De_Coriolis + + + Water_Discharge_Of_Sources + Debits_Des_Sources + + + Advection_Of_U_And_V + Convection_De_U_Et_V + + + Latitude_Of_Origin_Point + Latitude_Du_Point_Origine + + + Binary_Database_1_For_Tide + Base_Binaire_1_De_Donnees_De_Maree + + + Coriolis + Coriolis + + + Desired_Courant_Number + Nombre_De_Courant_Souhaite + + + Variables_For_Graphic_Printouts + Variables_Pour_Les_Sorties_Graphiques + + + Time_Range_For_Fourier_Analysis + Bornes_En_Temps_Pour_L_Analyse_De_Fourier + + + Graphic_Printout_Period + Periode_Pour_Les_Sorties_Graphiques + + + Tide_Generating_Force + Force_Generatrice_De_La_Maree + + + Preconditioning_For_Diffusion_Of_Tracers + Preconditionnement_Pour_La_Diffusion_Des_Traceurs + + + Number_Of_Tubes + Nombre_De_Buses + + + Vertical_Structures + Structures_Verticales + + + Stop_If_A_Steady_State_Is_Reached + Arret_Si_Un_Etat_Permanent_Est_Atteint + + + Number_Of_Weirs + Nombre_De_Seuils + + + Listing_Printout + Sortie_Listing + + + Previous_Computation_File + Fichier_Du_Calcul_Precedent + + + Fortran_File + Fichier_Fortran + + + Sections_Input_File + Fichier_Des_Sections_De_Controle + + + Binary_Database_2_For_Tide + Base_Binaire_2_De_Donnees_De_Maree + + + Results_File_Format + Format_Du_Fichier_Des_Resultats + + + Accuracy_Of_K + Precision_Sur_K + + + Tidal_Model_File + Fichier_Du_Modele_De_Maree + + + Fourier_Analysis_Periods + Periodes_D_Analyse_De_Fourier + + + H_Clipping + Clipping_De_H + + + Tolerances_For_Identification + Precisions_Pour_L_Identification + + + Previous_Computation_File_Format + Format_Du_Fichier_Du_Calcul_Precedent + + + Prescribed_Flowrates + Debits_Imposes + + + Bottom_Topography_File + Fichier_Des_Fonds + + + Implicitation_For_Depth + Implicitation_Pour_La_Hauteur + + + Reference_File_Format + Format_Du_Fichier_De_Reference + + + Diffusion_Of_Tracers + Diffusion_Des_Traceurs + + + Formatted_Data_File_1 + Fichier_De_Donnees_Formate_1 + + + Formatted_Data_File_2 + Fichier_De_Donnees_Formate_2 + + + Computation_Continued + Suite_De_Calcul + + + Breaches_Data_File + Fichier_De_Donnees_Des_Breches + + + Diffusion_Of_Velocity + Diffusion_Des_Vitesses + + + Type_Of_Advection + Forme_De_La_Convection + + + Solver_Option_For_Tracers_Diffusion + Option_Du_Solveur_Pour_La_Diffusion_Des_Traceurs + + + Advection_Of_Tracers + Convection_Des_Traceurs + + + Printout_Period_For_Drogues + Periode_Pour_Les_Sorties_De_Flotteurs + + + Option_For_The_Treatment_Of_Tidal_Flats + Option_De_Traitement_Des_Bancs_Decouvrants + + + Physical_Characteristics_Of_The_Tsunami + Parametres_Physiques_Du_Tsunami + + + Maximum_Number_Of_Iterations_For_K_And_Epsilon + Maximum_D_Iterations_Pour_K_Et_Epsilon + + + Tidal_Data_Base + Base_De_Donnees_De_Maree + + + Maximum_Number_Of_Iterations_For_Solver + Maximum_D_Iterations_Pour_Le_Solveur + + + Number_Of_Tracers + Nombre_De_Traceurs + + + Threshold_Depth_For_Wind + Profondeur_Limite_Pour_Le_Vent + + + Gravity_Acceleration + Acceleration_De_La_Pesanteur + + + Option_For_Characteristics + Option_Pour_Les_Caracteristiques + + + Spacing_Of_Roughness_Elements + Espacement_Des_Elements_De_Frottement + + + Parallel_Processors + Processeurs_Paralleles + + + Harmonic_Constants_File + Fichier_Des_Constantes_Harmoniques + + + Spherical_Coordinates + Coordonnees_Spheriques + + + Parameter_Estimation + Estimation_De_Parametre + + + Linearized_Propagation + Propagation_Linearisee + + + Accuracy_Of_Epsilon + Precision_Sur_Epsilon + + + Diameter_Of_Roughness_Elements + Diametre_Des_Elements_De_Frottement + + + Number_Of_First_Time_Step_For_Graphic_Printouts + Numero_Du_Premier_Pas_De_Temps_Pour_Les_Sorties_Graphiques + + + Threshold_For_Negative_Depths + Seuil_Pour_Les_Profondeurs_Negatives + + + Wind_Velocity_Along_X + Vitesse_Du_Vent_Suivant_X + + + Wind_Velocity_Along_Y + Vitesse_Du_Vent_Suivant_Y + + + Information_About_Solver + Informations_Sur_Le_Solveur + + + Initial_Conditions + Conditions_Initiales + + + Culvert_Data_File + Fichier_De_Donnees_Des_Siphons + + + Maximum_Number_Of_Iterations_For_Advection_Schemes + Maximum_D_Iterations_Pour_Les_Schemas_De_Convection + + + Turbulence_Model_For_Solid_Boundaries + Regime_De_Turbulence_Pour_Les_Parois + + + Continuity_Correction + Correction_De_Continuite + + + Law_Of_Bottom_Friction + Loi_De_Frottement_Sur_Le_Fond + + + Option_For_Tsunami_Generation + Option_Pour_La_Generation_De_Tsunami + + + Type_Of_Weirs + Type_Des_Seuils + + + Record_Number_In_Wave_File + Numero_De_L_Enregistrement_Dans_Le_Fichier_De_Houle + + + Abscissae_Of_Sources + Abscisses_Des_Sources + + + Values_Of_The_Tracers_At_The_Sources + Valeurs_Des_Traceurs_Des_Sources + + + Treatment_Of_Fluxes_At_The_Boundaries + Traitement_Des_Flux_Aux_Frontieres + + + Printing_Cumulated_Flowrates + Impression_Du_Cumul_Des_Flux + + + Compatible_Computation_Of_Fluxes + Calcul_Compatible_Des_Flux + + + Bottom_Smoothings + Lissages_Du_Fond + + + Initial_Depth + Hauteur_Initiale + + + Minimum_Value_Of_Depth + Valeur_Minimum_De_H + + + Option_For_The_Diffusion_Of_Tracers + Option_Pour_La_Diffusion_Des_Traceurs + + + Duration + Duree_Du_Calcul + + + Stop_Criteria + Criteres_D_Arret + + + Prescribed_Velocities + Vitesses_Imposees + + + Initial_Values_Of_Tracers + Valeurs_Initiales_Des_Traceurs + + + Reference_File + Fichier_De_Reference + + + + lecture du fichier impossible : + unable to read file + + + + Impossible d'ouvrir le fichier %s + unable to read file + + + + Format de sortie : %s, non supporte + + + + + Impossible d'ouvrir le fichier : %s + + + + + Erreur a l'evaluation : + %s + + + + + Erreur ! Erreur ! + + + + + Erreur rencontree dans recherche_enfants : %s + + + + + Erreur dans la creation du mot-cle : %s + + + + + Impossible d'ouvrir le fichier : %s + + + + + le texte a analyser n'est pas celui d'une commande ou d'un operateur : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + %d n'est pas un index valide pour append_brother + + + + + le fichier de commandes %s n'existe pas + + + + + un fichier de commandes doit etre defini avant une poursuite %s + + + + + le fichier poursuite %s n'existe pas + + + + + include mal defini %s + + + + + un fichier de commandes doit etre defini avant un include %s + + + + + le fichier include %s n'existe pas + + + + + le fichier jdc %s n'existe pas + + + + + jdc %s manque option jdc dans section jdc + + + + + %(v_1)s include %(v_2)s : %(v_3)s + v_1 + + + + + %(v_1)s fichier poursuite: %(v_2)s + v_1 + + + + + nom etude : %s + + + + + utilisation : %prog [options] + + + + + nom du fichier de commandes + + + + + nom du fichier poursuite + + + + + numero d'unite suivi du nom du fichier include + + + + + fichier decrivant une etude + + + + + version de catalogue a utiliser + + + + + nom du code a utiliser + + + + + niveau de debug + + + + + schema + + + + + localisation de l'application, pour la traduction + + + + + Nombre incorrect d'arguments + + + + + Localisation specifiee pour l'application. + + + + + Un fichier de nom %s existe deja : impossible de creer un repertoire de meme nom + + + + + Creation du repertoire %s impossible + Verifiez vos droits d'acces + + + + + Impossible de transferer les fichiers requis dans : %s + + + + + Erreur + + + + + Erreurs fatales + + + + + Impossible reconstruire commande + + + + + + Objet commentaire non valorise + + + + + Debut Fonction %s + + + + + Fin Fonction %s + + + + + Nom de concept deja defini : %s + + + + + Longueur incorrecte + + + + + L'attribut 'min' doit etre un entier : + + + + + L'attribut 'max' doit etre un entier : + + + + + Nombres d'occurrence min et max invalides : + + + + + L'attribut 'fr' doit etre une chaine de caracteres + + + + + L'attribut 'statut' doit valoir 'o','f','c' ou 'd' + + + + + L'attribut 'docu' doit etre une chaine de caracteres + + + + + Fin + + + + + Le parametre EVAL %s ne peut valoir None + + + + + Le parametre EVAL ne peut valoir None + + + + + Pas de nom donne au parametre EVAL + + + + + Un nom de parametre ne peut depasser 8 caracteres + + + + + ERREUR + + + + + Format pas implemente : %s + + + + + Type d'objet non prevu : %s + + + + + ce groupe de maillage %s est associe a au moins un materiau et au moins une source. + + + + + ce groupe de maillage %s n'est associe a aucun materiau ou source. + + + + + ATTENTION! Une source constante n'est possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe valable + + + + + ERREUR! ce type de bloc (%s) n'est pas valable + + + + + toutes les donnees ne sont pas connues + + + + + Fichier patron %s n'existe pas. + + + + + Pas supporte + + + + + Entite inconnue ou interdite :%s + + + + + Entite inconnue ou interdite :%s. Elle est ignoree + + + + + Les tuples ne sont pas supportes pour le format ini :%s + + + + + Type de valeur non supportee par le format ini :%(nom)s +%(exception)s + nom + + + + + Il y a un pb a la Creation du XML + + + + + Il y a un pb a la Creation du STD + + + + + Entite inconnue ou interdite : %s. Elle est ignoree + + + + + Type de valeur non supporte par le format pyth : n %(exception)s + nom + + + + + Tag %s non-defini. Ceci est un bogue interne. en informer les developpeurs. + + + + + Le mot-cle %s est obligatoire. + + + + + concept %(inst_name)s de type %(class_name)s + inst_name + + + + + Un nom de concept doit etre un identificateur Python + + + + + Concept existant + + + + + Operateur reentrant mais concept non existant + + + + + Operateur reentrant et concept existant trouve + + + + + Concept deja existant et de mauvais type + + + + + Nommage du concept refuse : un concept de meme nom existe deja + + + + + Nommage du concept effectue + + + + + Nommage impossible %s + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese ouvrante manquante + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese fermante manquante + + + + + Pas de nom donne a la FORMULE + + + + + Un nom de FORMULE ne peut depasser 8 caracteres + + + + + Un nom de FORMULE ne peut pas commencer par un chiffre + + + + + Le type de la valeur retournee n'est pas specifie + + + + + Une formule ne peut retourner une valeur de type : %s + + + + + Impossible d'ajouter la commande + + + + + Impossible d ajouter la commande + + + + + Pas implemente + + + + + Nom de concept deja defini + + + + + Nom de concept deja defini : + + + + + Impossible de trouver le fichier correspondant a l'unite + + + + + n'est pas un fichier existant + + + + + Fichier invalide %s + + + + + Impossible de construire le jeu de commandes correspondant au fichier + + + + + Erreur lors de l'evaluation du fichier inclus + + + + + Ce fichier ne sera pas pris en compte + %s + + + + + Ce fichier ne sera pas pris en compte +Le fichier associe n'est pas defini + + + + + Le fichier n est pas defini + + + + + le fichier doit contenir une unique variable de sortie + + + + + Fichier invalide + + + + + Le contenu de ce fichier ne sera pas pris en compte + %s + + + + + Le fichier INCLUDE n est pas defini + + + + + Le contenu de ce fichier ne sera pas pris en compte + + + + + + Erreur lors de l'evaluation du fichier poursuite + + + + + L'objet %(v_1)s ne peut etre un fils de %(v_2)s + v_1 + + + + + L'objet %s ne peut pas etre repete + + + + + Erreur - mclist inexistante : %s + + + + + Erreur - mot cle facteur de nom : %s + + + + + traitement non-prevu + + + + + L'objet %s ne peut pas etre ajoute + + + + + None n'est pas une valeur autorisee + + + + + un concept de meme nom existe deja + + + + + Concept cree + + + + + La matrice n'est pas une matrice %(n_lign)d sur %(n_col)d + n_lign + + + + + Impossible de relire le fichier %s + + + + + + Le fichier include contient des erreurs + + + + + n'est pas un index valide pour append_brother + + + + + Decommenter + + + + + Decommente la commande + + + + + Impossible de supprimer un mot-cle obligatoire + + + + + Mot-cle %s supprime + + + + + Pb interne : impossible de supprimer ce mot-cle + + + + + Commentaire supprime + + + + + Commande %s supprimee + + + + + Pb interne : impossible de supprimer cet objet + + + + + Le fichier de commande n'a pas pu etre converti pour etre editable par Eficas + + + + + + + Include vide + + + + + L'include doit etre correctement initialise pour etre visualise + + + + + Impossible de supprimer ce mot-clef + + + + + View3D + + + + + affiche dans Geom les elements de structure + + + + + Graphique + + + + + affiche la distribution + + + + + Erreur interne + + + + + La PDF de la loi ne peut pas etre affichee. + + + + + &Annuler + + + + + Impossible de supprimer un mot-clef obligatoire + + + + + Mot-clef %s supprime + + + + + Pb interne : impossible de supprimer ce mot-clef + + + + + Definition d'un parametre + + + + + Import du fichier de Configuration + + + + + Erreur a la lecture du fichier de configuration %s + + + + + Erreur fatale au chargement de %s + + + + + Erreur fatale au chargement d'un fichier + + + + + fichier modifie + + + + + Attention! fichier change hors EFICAS + + + + + Type de fichier non reconnu + + + + + EFICAS ne sait pas ouvrir le type de fichier %s + + + + + EFICAS ne sait pas ouvrir ce type de fichier + + + + + Copie impossible + + + + + Veuillez selectionner un objet a copier + + + + + Veuillez selectionner un seul objet : la copie se fera apres le noeud selectionne + + + + + Aucun Objet n a ete copie ou coupe + + + + + Copie refusee + + + + + Eficas n a pas reussi a copier l objet + + + + + Copie refusee pour ce type d objet + + + + + Deplacement refuse + + + + + Deplacement refuse entre 2 fichiers. Seule la copie est autorisee + + + + + Copie impossible a cet endroit + + + + + Veuillez selectionner une commande, un parametre, un commentaire ou une macro + + + + + Choix d'un fichier XML + + + + + Le fichier contient une commande MODEL + + + + + + Donnez le nom du fichier XML qui contient la description des variables + + + + + Ouvrir Fichier + + + + + Erreur a la generation + + + + + EFICAS ne sait pas convertir ce JDC + + + + + Format %s non reconnu + + + + + EFICAS ne sait pas convertir le JDC selon le format + + + + + Execution impossible + + + + + le JDC doit etre valide pour une execution MAP + + + + + le JDC doit contenir un et un seul composant + + + + + le JDC doit etre valide pour une execution + + + + + Sauvegarder SVP avant l'execution + + + + + sauvegarde + + + + + Sauvegarde du Fichier + + + + + Le fichier <b>%s</b> existe deja. + + + + + &Ecraser + + + + + Sauvegarde de l'input impossible + + + + + Un JdC valide est necessaire pour creer un .input + + + + + Choix du composant obligatoire + + + + + Choix unite %d + + + + + Le fichier %s contient une commande INCLUDE + + + + + + Donnez le nom du fichier correspondant a l unite logique + + + + + Fichier pour unite + + + + + Choix d'un fichier de poursuite + + + + + Le fichier %s contient une commande POURSUITE + + + + + + Donnez le nom du fichier dont vous + voulez faire une poursuite + + + + + Fichiers Med (*.med);;Tous les Fichiers (*) + + + + + Fichier Med + + + + + Veuillez selectionner un fichier Med + + + + + reel + + + + + entier + + + + + complexe + + + + + Entrez + + + + + Entrez entre + + + + + et + + + + + Type de base inconnu + + + + + Aide Indisponible + + + + + l'aide n est pas installee + + + + + Visualisation Fichier + + + + + Impossibilite d'afficher le Fichier + + + + + Sauvegarder Fichier + + + + + Fichier selectionne + + + + + Selection + + + + + Export Med vers Fichier + + + + + Impossibilite d exporter le Fichier + + + + + Traduire Fichier + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + Fichier Traduit : %s + + + + + + + Pas de difference entre le fichier origine et le fichier traduit + + + + + objet valide + + + + + %d versions du catalogue sont disponibles + + + + + Sauvegarder le fichier + + + + + Le fichier <b>%(v_1)s</b> n'a pu etre sauvegarde. <br>Raison : %(v_2)s + v_1 + + + + + Options pour + + + + + + valeurs + + + + + Nombre minimal de valeurs : + + + + + Nombre maximal de valeurs : + + + + + expression valide + + + + + expression invalide + + + + + l expression n est pas de la forme a+bj + + + + + expression n est pas de la forme a+bj + + + + + entrer une seule valeur SVP + + + + + saisir le type de complexe + + + + + Valeur du mot-cle enregistree + + + + + Valeur du mot-cle non autorisee + + + + + &Recents + + + + + Aide specifique + + + + + Options + + + + + Traduction + + + + + TraduitV7V8 + + + + + TraduitV8V9 + + + + + TraduitV9V10 + + + + + Acquiert Groupe Maille + + + + + Specificites Maille + + + + + version + + + + + pour + + + + + Parametrage + + + + + Veuillez d abord choisir un code + + + + + Pas de possibilite de personnalisation de la configuration + + + + + &Effacer + + + + + Veuillez entrer le complexe sous forme aster ou sous forme python + + + + + Import du catalogue + + + + + Pas de catalogue defini pour le code + + + + + Aucun catalogue trouve + + + + + Impossible d'importer le catalogue + + + + + avec le catalogue + + + + + Choix d une version du code + + + + + Choix d une version + + + + + Parametre + + + + + Insere un parametre + + + + + item invalide + + + + + l item doit etre valide + + + + + &Ok + &Ok + + + + apres + + + + + Insere un commentaire apres la commande + + + + + avant + + + + + Insere un commentaire avant la commande + + + + + Insere un parametre apres la commande + + + + + Insere un parametre avant la commande + + + + + Supprimer + + + + + supprime le mot clef + + + + + Documentation + + + + + documentation sur la commande + + + + + Documentation Vide + + + + + Aucune documentation n'est associee a ce noeud + + + + + impossible de trouver la commande + + + + + Lecteur PDF + + + + + impossible d'ouvrir + + + + + Commentaire + + + + + ce noeud + + + + + commente le noeud + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + &Quitter + + + + + Quitter + + + + + Fichier Duplique + + + + + Le fichier ne sera pas sauvegarde. + + + + + Fichier + + + + + Le fichier <b>%s</b> est deja ouvert. + + + + + &Duplication + + + + + &Abort + + + + + Fichier Modifie + + + + + Le fichier %s n a pas ete sauvegarde. + + + + + &Sauvegarder + + + + + SOURCE + + + + + EnveloppeConnexeInducteur + + + + + EnveloppeConnexe2 + + + + + VecteurDirecteur + + + + + Centre + + + + + SectionBobine + + + + + Amplitude + + + + + NbdeTours + + + + + CONDUCTEUR + + + + + Conductivite + + + + + PermeabiliteRelative + + + + + NOCOND + + + + + VCUT + + + + + Orientation + + + + + ZS + + + + + PARAMETRES + + + + + RepCarmel + + + + + TypedeFormule + + + + + Frequence + + + + + Nb_Max_Iterations + + + + + Erreur_Max + + + + + PARAMETRE + + + + + Valeur non modifiable + + + + + Format non implemente + + + + + Type d'objet non prevu + + + + + Select + + + + + Sauve Format Ligne + + + + + %s n'est pas un fichier valide + + + + + Fichier de donnees + + + + + Tous les Fichiers (*) + + + + + nb min de valeurs : + + + + + nb max de valeurs atteint + + + + + TraduitV10V11 + + + + + TraduitV11V12 + + + + + Valeur du mot-clef enregistree + + + + + Valeur du mot-clef non autorisee : + + + + + Un concept de nom %s existe déjà ! + + + + + La cardinalite n'est pas correcte, la derniere valeur est ignoree + + + + + n est pas un tuple de + + + + + valeurs + + + + + Valeur incorrecte + + + + + n est pas un identifiant correct + + + + + + Entrer un float SVP + + + + + Entrer un float inferieur a + + + + + Entrer un float superieur a + + + + + Mauvaise execution + + + + + impossible d executer la methode + + + + + Mauvaise Commande + + + + + Aucune variable connue + + + + + Mauvaise dimension de matrice + + + + + le nombre de ligne n est pas egal a + + + + + le nombre de colonne n est pas egal a + + + + + Mauvaise Valeur + + + + + l element + + + + + n est pas correct + + + + + Modification Impossible + + + + + le parametre n'est pas valide + + + + + n est pas un identifiant correct + + + + + Valeur incorrecte: + + + + + Valeur incorrecte + + + + + Valeur correcte + + + + + impossible d'evaluer : + + + + + La formule passee a l'interpreteur doit etre sous forme de tuple + + + + + Debut + + + + + Pas de nom donne au parametre + + + + + Le parametre %s ne peut valoir None + + + + + Format non implemente : %s + + + + + Impossible de realiser la verification de la formule + + + + + Un concept de nom %s existe deja ! + + + + + existe deja + + + + + + Fichier non encore nomme + + + + + La matrice n'a pas le bon entete + + + + + le mot clef + + + + + doit etre insere avant + + + + + insertion impossible + + + + + doit etre insere apres + + + + + Nb maximum de valeurs atteint + + + + + pas de regle de construction pour ce jeu de commandes + + + + + Gestion Maillage + + + + + Acquiert groupe mailles + + + + + Acquisition Groupe Maille + + + + + VERSION + + + + + NUM + + + + + FILETYPE + + + + + PARAMETERS + + + + + Fichier_maillage + + + + + Echelle_du_maillage + + + + + Formulation + + + + + Timeproblem + + + + + spectral + + + + + Basis + + + + + Fourier + + + + + Ordre + + + + + FREQUENCY + + + + + minimisation + + + + + no + + + + + yes + + + + + nb_procs_para + + + + + POLYMER + + + + + MODEL_DATABASE + + + + + Stabilise + + + + + Non Stabilise + + + + + Local + + + + + ESSAI_OPTION + + + + + MATERIEL + + + + + Cable + + + + + Peinture + + + + + Tuyauterie + + + + + Materiau_De_Cable + + + + + PE + + + + + EPDM + + + + + Modele + + + + + Impossible de convertir le fichier Python qui doit contenir des erreurs. + + On retourne le fichier non converti. Prevenir la maintenance. + + %s + + + + + Eficas ne peut pas traiter plusieurs instructions + sur la meme ligne : %s + + + + + le texte a analyser n'est pas celui d'une commande ou + d'un operateur : %s + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + jdc %(v_1)s manque + fichier comm dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier + de commandes %(v_2)s n'existe pas + v_1 + + + + + jdc %(v_1)s + fichier include %(v_2)s, %(v_3)s + n'existe pas + v_1 + + + + + jdc %(v_1)s manque fichier comm + dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier de commandes + %(v_2)s n'existe pas + v_1 + + + + + Objet commande commentarisé invalide + + + + + ATTENTION! Une source constante + n'est possible qu'a frequence nulle + en regime frequentiel + + + + + ERREUR! Une forme de la source du + type WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ATTENTION! Une source constante n'est + possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! Une forme de la source du type + WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe + indiquant le type de materiau ou de source associee + + + + + ERREUR! ce groupe de maille (%(nom)s) n'a pas + le prefixe correct pour etre associe a un type %(type_bloc)s + nom + + + + + + Include Invalide. + ne sera pas pris en compte + + + + + : verifie les types dans un tuple + + + + + Les types entres ne sont pas permis + + + + + ChoixCode + + + Choix du code + + + + + Veuillez choisir un code : + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + ChoixCommandes + + + DMacro + + + + + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Affichage</span></p></body></html> + + + + + affiche les commandes par ordre alphabetique + + + + + Alphabetique + + + + + affiche les commandes selon les thèmes + + + + + Ordre de la modélisation + + + + + Par Groupe + + + + + <html><head/><body><p align="center">Filtre Commande</p></body></html> + + + + + filter commands + + + + + affiche les régles de validité + + + + + ... + + + + + Règles de construction + + + + + Sensible à la casse + + + + + Effacer + + + + + selectionne les mots qui CONTIENNENT l expression + + + + + ré-affiche toutes les commandes + + + + + DChoixCata + + + Choix d'une version du code Aster + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 versions sont disponibles</span></p></body></html> + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + DSelVal + + + Sélection de valeurs + + + + + Separateur + + + + + espace + + + + + virgule + + + + + point-virgule + + + + + Ajouter Selection + + + + + Importer Tout + + + + + DVisu + + + Visualisation Include Materiau + + + + + Eficas + + + MainWindow + + + + + &Fichier + + + + + &Aide + + + + + toolBar + + + + + &Nouveau + + + + + Ctrl+N + + + + + Nouvel Include + + + + + &Ouvrir + + + + + Ctrl+O + + + + + Enregistrer + + + + + Enregistrer sous + + + + + Fermer + + + + + Ctrl+W + + + + + Fermer tout + + + + + Couper + + + + + Ctrl+X + + + + + Copier + + + + + Ctrl+C + + + + + Coller + + + + + Ctrl+V + + + + + Quitter + + + + + Ctrl+Q + + + + + Rapport de Validation + + + + + Fichier Source + + + + + Fichier Résultat + + + + + Parametres Eficas + + + + + Lecteur documentation + + + + + Eficas + + + + + Version + + + + + Supprimer + + + + + Rechercher + + + + + Rechercher dans l'arbre d'etude + + + + + Ctrl+F + + + + + Replier/Deplier + + + + + Tab 1 + + + + + &Edition + + + + + &JeuDeDonnées + + + + + Shift+I + + + + + Ctrl+S + + + + + Ctrl+Shift+S + + + + + Shift+V + + + + + Chercher Mot-Clef + + + + + Rechercher dans le catalogue + + + + + Shift+F + + + + + Shift+D + + + + + Commentaire + + + + + Shift+C + + + + + Paramètres + + + + + Gestion des paramètres + + + + + Shift+P + + + + + Parametre Eficas + + + + + Execution + + + + + Execution + + + + + Save Run + + + + + Patrons + + + + + Run + + + + + &bad + + + + + Régles du JdC + + + + + JDCEditor + + + Save File + + + + + The file <b>%1</b> could not be saved.<br>Reason: %2 + + + + + JDC (*.comm);;All Files (*) + + + + + &Abandonner + &Abandonner + + + + Tuple2 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Tuple3 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Widget4a6RadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetBloc + + + Form + + + + + WidgetCB + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetCommande + + + DCommandeUnique + + + + + Affiche le rapport de validité de la commande + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + + + Lance un script associé à la commande + + + + + ouvre un navigateur sur l'aide contextuelle + + + + + affiche les régles de validité + + + + + Détruit la commande + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + TextLabel + + + + + WidgetCommentaire + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">Commentaire</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + WidgetDate + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetFact + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" font-style:italic;">TextLabel</span></p></body></html> + + + + + WidgetFactPlie + + + Form + + + + + ... + + + + + TextLabel + + + + + WidgetHeure + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetInformative + + + Form + + + + + WidgetOptionnel + + + WidgetOptionnel + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + WidgetParam + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#000000;">Paramètre</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + Verifie la valeur + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetPlusieursBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Sélectionne depuis Salome + + + + + Visualise dans Salome + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + TextLabel + + + + + WidgetPlusieursInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursIntoOrdonne + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + TextLabel + + + + + Remonte d'une ligne + + + + + Descend d'une ligne + + + + + Détruit une ligne + + + + + ajoute une ligne + + + + + visualise l'ensemble des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursPlie + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + + + + + Détruit le mot-clef + + + + + WidgetPlusieursTuple + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + TextLabel + + + + + WidgetRadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetSDCOInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p>Structures de données du type requis </p><p><br/></p></body></html> + + + + + <html><head/><body><p>ou Nom du concept</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBool + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + True + + + + + False + + + + + Détruit le mot-clef + + + + + WidgetSimpComplexe + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Complexe : a+bj + + + + + <html><head/><body><p align="center">OU </p></body></html> + + + + + Réel/Imaginaire + + + + + Module/Phase + + + + + WidgetSimpFichier + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + affiche l'explorateur de fichier + + + + + ouvre le fichier choisi + + + + + Détruit le mot-clef + + + + + WidgetSimpTxt + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple2 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple3 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetUniqueSDCO + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Attend un objet de type CO + + + + + Détruit le mot-clef + + + + + WidgetVide + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0055ff;">Label</span></p></body></html> + + + + + Attend un objet de type XXXX. Il faut le créer + + + + + baseWidget + + + DMacro + + + + + dView + + + Dialog + + + + + Fermer + + + + + Sauver + + + + + desRecherche + + + Rechercher dans le JDC + + + + + Next + + + + + Suivant + + + + + desWidgetCreeParam + + + Gestion des Paramètres + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p><span style=" text-decoration: underline;">Créer un paramètre</span></p></body></html> + + + + + desWidgetMatrice + + + Dialog + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>Met à jour l'en-tête</p></body></html> + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + self.appliEficas + + + Wrapper Files (*.xml);;All Files (*) + + + + + Noname + + + + + viewRegles + + + Dialog + + + + diff --git a/UiQT5/eficas_en.ts b/UiQT5/eficas_en.ts index f89ee2a7..ae2abf7b 100644 --- a/UiQT5/eficas_en.ts +++ b/UiQT5/eficas_en.ts @@ -1,51 +1,1209 @@ - @default + @defaut + + TITLE + TITLE + + + GEOMETRY FILE FORMAT + GEOMETRY_FILE_FORMAT + + + GEOMETRY FILE + GEOMETRY_FILE + + + FORTRAN FILE + FORTRAN_FILE + + + BOTTOM TOPOGRAPHY FILE + BOTTOM_TOPOGRAPHY_FILE + + + BOTTOM SMOOTHINGS + BOTTOM_SMOOTHINGS + + + BOUNDARY CONDITIONS FILE + BOUNDARY_CONDITIONS_FILE + + + VALIDATION + VALIDATION + + + REFERENCE FILE FORMAT + REFERENCE_FILE_FORMAT + + + REFERENCE FILE + REFERENCE_FILE + + + BINARY DATA FILE 1 FORMAT + BINARY_DATA_FILE_1_FORMAT + + + BINARY DATA FILE 1 + BINARY_DATA_FILE_1 + + + BINARY DATA FILE 2 FORMAT + BINARY_DATA_FILE_2_FORMAT + + + BINARY DATA FILE 2 + BINARY_DATA_FILE_2 + + + FORMATTED DATA FILE 1 + FORMATTED_DATA_FILE_1 + + + FORMATTED DATA FILE 2 + FORMATTED_DATA_FILE_2 + + + INITIAL CONDITIONS + INITIAL_CONDITIONS + + + INITIAL ELEVATION + INITIAL_ELEVATION + + + INITIAL DEPTH + INITIAL_DEPTH + + + COMPUTATION CONTINUED + COMPUTATION_CONTINUED + + + PREVIOUS COMPUTATION FILE FORMAT + PREVIOUS_COMPUTATION_FILE_FORMAT + + + PREVIOUS COMPUTATION FILE + PREVIOUS_COMPUTATION_FILE + + + RECORD NUMBER FOR RESTART + RECORD_NUMBER_FOR_RESTART + + + INITIAL TIME SET TO ZERO + INITIAL_TIME_SET_TO_ZERO + + + PARALLEL PROCESSORS + PARALLEL_PROCESSORS + + + CHECKING THE MESH + CHECKING_THE_MESH + + + MAXIMUM NUMBER OF BOUNDARIES + MAXIMUM_NUMBER_OF_BOUNDARIES + + + MAXIMUM NUMBER OF SOURCES + MAXIMUM_NUMBER_OF_SOURCES + + + MAXIMUM NUMBER OF TRACERS + MAXIMUM_NUMBER_OF_TRACERS + + + PRESCRIBED ELEVATIONS + PRESCRIBED_ELEVATIONS + + + PRESCRIBED FLOWRATES + PRESCRIBED_FLOWRATES + + + PRESCRIBED VELOCITIES + PRESCRIBED_VELOCITIES + + + STAGE-DISCHARGE CURVES + STAGE_DISCHARGE_CURVES + + + STAGE-DISCHARGE CURVES FILE + STAGE_DISCHARGE_CURVES_FILE + + + VELOCITY PROFILES + VELOCITY_PROFILES + + + OPTION FOR LIQUID BOUNDARIES + OPTION_FOR_LIQUID_BOUNDARIES + + + LIQUID BOUNDARIES FILE + LIQUID_BOUNDARIES_FILE + + + ELEMENTS MASKED BY USER + ELEMENTS_MASKED_BY_USER + + + DEBUGGER + DEBUGGER + + + TIME STEP + TIME_STEP + + + NUMBER OF TIME STEPS + NUMBER_OF_TIME_STEPS + + + DURATION + DURATION + + + ORIGINAL DATE OF TIME + ORIGINAL_DATE_OF_TIME + + + ORIGINAL HOUR OF TIME + ORIGINAL_HOUR_OF_TIME + + + STOP IF A STEADY STATE IS REACHED + STOP_IF_A_STEADY_STATE_IS_REACHED + + + STOP CRITERIA + STOP_CRITERIA + + + CONTROL OF LIMITS + CONTROL_OF_LIMITS + + + LIMIT VALUES + LIMIT_VALUES + + + VARIABLE TIME-STEP + VARIABLE_TIME_STEP + + + DESIRED COURANT NUMBER + DESIRED_COURANT_NUMBER + + + ORIGIN COORDINATES + ORIGIN_COORDINATES + + + SPHERICAL COORDINATES + SPHERICAL_COORDINATES + + + LATITUDE OF ORIGIN POINT + LATITUDE_OF_ORIGIN_POINT + + + LONGITUDE OF ORIGIN POINT + LONGITUDE_OF_ORIGIN_POINT + + + NORTH + NORTH + + + SPATIAL PROJECTION TYPE + SPATIAL_PROJECTION_TYPE + + + MAXIMUM NUMBER OF FRICTION DOMAINS + MAXIMUM_NUMBER_OF_FRICTION_DOMAINS + + + FRICTION DATA + FRICTION_DATA + + + FRICTION DATA FILE + FRICTION_DATA_FILE + + + LAW OF BOTTOM FRICTION + LAW_OF_BOTTOM_FRICTION + + + FRICTION COEFFICIENT + FRICTION_COEFFICIENT + + + MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW + MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW + + + DEPTH IN FRICTION TERMS + DEPTH_IN_FRICTION_TERMS + + + NON-SUBMERGED VEGETATION FRICTION + NON_SUBMERGED_VEGETATION_FRICTION + + + DIAMETER OF ROUGHNESS ELEMENTS + DIAMETER_OF_ROUGHNESS_ELEMENTS + + + SPACING OF ROUGHNESS ELEMENTS + SPACING_OF_ROUGHNESS_ELEMENTS + + + LAW OF FRICTION ON LATERAL BOUNDARIES + LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES + + + ROUGHNESS COEFFICIENT OF BOUNDARIES + ROUGHNESS_COEFFICIENT_OF_BOUNDARIES + + + DEFINITION OF ZONES + DEFINITION_OF_ZONES + + + ZONES FILE + ZONES_FILE + + + WIND + WIND + + + OPTION FOR WIND + OPTION_FOR_WIND + + + COEFFICIENT OF WIND INFLUENCE + COEFFICIENT_OF_WIND_INFLUENCE + + + WIND VELOCITY ALONG X + WIND_VELOCITY_ALONG_X + + + WIND VELOCITY ALONG Y + WIND_VELOCITY_ALONG_Y + + + SPEED AND DIRECTION OF WIND + SPEED_AND_DIRECTION_OF_WIND + + + THRESHOLD DEPTH FOR WIND + THRESHOLD_DEPTH_FOR_WIND + + + AIR PRESSURE + AIR_PRESSURE + + + VALUE OF ATMOSPHERIC PRESSURE + VALUE_OF_ATMOSPHERIC_PRESSURE + + + RAIN OR EVAPORATION + RAIN_OR_EVAPORATION + + + RAIN OR EVAPORATION IN MM PER DAY + RAIN_OR_EVAPORATION_IN_MM_PER_DAY + + + WAVE DRIVEN CURRENTS + WAVE_DRIVEN_CURRENTS + + + RECORD NUMBER IN WAVE FILE + RECORD_NUMBER_IN_WAVE_FILE + + + PARAMETER ESTIMATION + PARAMETER_ESTIMATION + + + COST FUNCTION + COST_FUNCTION + + + IDENTIFICATION METHOD + IDENTIFICATION_METHOD + + + TOLERANCES FOR IDENTIFICATION + TOLERANCES_FOR_IDENTIFICATION + + + MAXIMUM NUMBER OF ITERATIONS FOR IDENTIFICATION + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION + + + ABSCISSAE OF SOURCES + ABSCISSAE_OF_SOURCES + + + ORDINATES OF SOURCES + ORDINATES_OF_SOURCES + + + WATER DISCHARGE OF SOURCES + WATER_DISCHARGE_OF_SOURCES + + + VELOCITIES OF THE SOURCES ALONG X + VELOCITIES_OF_THE_SOURCES_ALONG_X + + + VELOCITIES OF THE SOURCES ALONG Y + VELOCITIES_OF_THE_SOURCES_ALONG_Y + + + TYPE OF SOURCES + TYPE_OF_SOURCES + + + SOURCES FILE + SOURCES_FILE + + + WATER QUALITY + WATER_QUALITY + + + WATER QUALITY PROCESS + WATER_QUALITY_PROCESS + + + CORIOLIS + CORIOLIS + + + CORIOLIS COEFFICIENT + CORIOLIS_COEFFICIENT + + + OPTION FOR TSUNAMI GENERATION + OPTION_FOR_TSUNAMI_GENERATION + + + PHYSICAL CHARACTERISTICS OF THE TSUNAMI + PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI + + + WATER DENSITY + WATER_DENSITY + + + GRAVITY ACCELERATION + GRAVITY_ACCELERATION + + + VERTICAL STRUCTURES + VERTICAL_STRUCTURES + + + SECONDARY CURRENTS + SECONDARY_CURRENTS + + + PRODUCTION COEFFICIENT FOR SECONDARY CURRENTS + PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS + + + DISSIPATION COEFFICIENT FOR SECONDARY CURRENTS + DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS + + + VELOCITY DIFFUSIVITY + VELOCITY_DIFFUSIVITY + + + TURBULENCE MODEL + TURBULENCE_MODEL + + + SOLVER FOR K-EPSILON MODEL + SOLVER_FOR_K_EPSILON_MODEL + + + OPTION FOR THE SOLVER FOR K-EPSILON MODEL + OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL + + + PRECONDITIONING FOR K-EPSILON MODEL + PRECONDITIONING_FOR_K_EPSILON_MODEL + + + ACCURACY OF K + ACCURACY_OF_K + + + ACCURACY OF EPSILON + ACCURACY_OF_EPSILON + + + MAXIMUM NUMBER OF ITERATIONS FOR K AND EPSILON + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON + + + NON-DIMENSIONAL DISPERSION COEFFICIENTS + NON_DIMENSIONAL_DISPERSION_COEFFICIENTS + + + TURBULENCE MODEL FOR SOLID BOUNDARIES + TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES + + + INFORMATION ABOUT K-EPSILON MODEL + INFORMATION_ABOUT_K_EPSILON_MODEL + + + ADVECTION OF K AND EPSILON + ADVECTION_OF_K_AND_EPSILON + + + SCHEME FOR ADVECTION OF K-EPSILON + SCHEME_FOR_ADVECTION_OF_K_EPSILON + + + SCHEME OPTION FOR ADVECTION OF K-EPSILON + SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON + + + TIME STEP REDUCTION FOR K-EPSILON MODEL + TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL + + + EQUATIONS + EQUATIONS + + + TREATMENT OF THE LINEAR SYSTEM + TREATMENT_OF_THE_LINEAR_SYSTEM + + + FINITE VOLUME SCHEME + FINITE_VOLUME_SCHEME + + + SOLVER + SOLVER + + + SOLVER OPTION + SOLVER_OPTION + + + SOLVER ACCURACY + SOLVER_ACCURACY + + + MAXIMUM NUMBER OF ITERATIONS FOR SOLVER + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER + + + CONTINUITY CORRECTION + CONTINUITY_CORRECTION + + + PRECONDITIONING + PRECONDITIONING + + + C-U PRECONDITIONING + C_U_PRECONDITIONING + + + DISCRETIZATIONS IN SPACE + DISCRETIZATIONS_IN_SPACE + + + IMPLICITATION FOR DEPTH + IMPLICITATION_FOR_DEPTH + + + IMPLICITATION FOR VELOCITY + IMPLICITATION_FOR_VELOCITY + + + PROPAGATION + PROPAGATION + + + INITIAL GUESS FOR H + INITIAL_GUESS_FOR_H + + + LINEARIZED PROPAGATION + LINEARIZED_PROPAGATION + + + INITIAL GUESS FOR U + INITIAL_GUESS_FOR_U + + + MEAN DEPTH FOR LINEARIZATION + MEAN_DEPTH_FOR_LINEARIZATION + + + ADVECTION + ADVECTION + + + ADVECTION OF H + ADVECTION_OF_H + + + ADVECTION OF U AND V + ADVECTION_OF_U_AND_V + + + TYPE OF ADVECTION + TYPE_OF_ADVECTION + + + OPTION FOR CHARACTERISTICS + OPTION_FOR_CHARACTERISTICS + + + SUPG OPTION + SUPG_OPTION + + + NUMBER OF GAUSS POINTS FOR WEAK CHARACTERISTICS + NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS + + + MASS-LUMPING FOR WEAK CHARACTERISTICS + MASS_LUMPING_FOR_WEAK_CHARACTERISTICS + + + MAXIMUM NUMBER OF ITERATIONS FOR ADVECTION SCHEMES + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES + + + UPWIND COEFFICIENTS + UPWIND_COEFFICIENTS + + + MASS-LUMPING ON H + MASS_LUMPING_ON_H + + + MASS-LUMPING ON VELOCITY + MASS_LUMPING_ON_VELOCITY + + + SCHEME FOR ADVECTION OF VELOCITIES + SCHEME_FOR_ADVECTION_OF_VELOCITIES + + + SCHEME OPTION FOR ADVECTION OF VELOCITIES + SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES + + + FREE SURFACE GRADIENT COMPATIBILITY + FREE_SURFACE_GRADIENT_COMPATIBILITY + + + NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES + NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES + + + TREATMENT OF FLUXES AT THE BOUNDARIES + TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES + + + DIFFUSION OF VELOCITY + DIFFUSION_OF_VELOCITY + + + OPTION FOR THE DIFFUSION OF VELOCITIES + OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES + + + IMPLICITATION FOR DIFFUSION OF VELOCITY + IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY + + + MATRIX STORAGE + MATRIX_STORAGE + + + MATRIX-VECTOR PRODUCT + MATRIX_VECTOR_PRODUCT + + + NEWMARK TIME INTEGRATION COEFFICIENT + NEWMARK_TIME_INTEGRATION_COEFFICIENT + + + ZERO + ZERO + + + TIDAL FLATS + TIDAL_FLATS + - Discretisations_En_Espace - Discretizations_In_Space + OPTION FOR THE TREATMENT OF TIDAL FLATS + OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS - Option_De_Supg - Supg_Option + TREATMENT OF NEGATIVE DEPTHS + TREATMENT_OF_NEGATIVE_DEPTHS - Forme_De_La_Convection - Type_Of_Advection + THRESHOLD FOR NEGATIVE DEPTHS + THRESHOLD_FOR_NEGATIVE_DEPTHS - Cote constante - Constant elevation + THRESHOLD DEPTH FOR RECEDING PROCEDURE + THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE - Cote Nulle - Zero elevation + H CLIPPING + H_CLIPPING - Hauteur Nulle - Zero depth + MINIMUM VALUE OF DEPTH + MINIMUM_VALUE_OF_DEPTH - Hauteur constante - Constant depth + NUMBER OF TRACERS + NUMBER_OF_TRACERS - Particulieres - Special + NAMES OF TRACERS + NAMES_OF_TRACERS - Altimetrie satellite tpxo - Tpxo satellite altimetry + INITIAL VALUES OF TRACERS + INITIAL_VALUES_OF_TRACERS - Sequentiel - Sequential + DENSITY EFFECTS + DENSITY_EFFECTS - Parallele - Parallel + MEAN TEMPERATURE + MEAN_TEMPERATURE + + PRESCRIBED TRACERS VALUES + PRESCRIBED_TRACERS_VALUES + + + SOLVER FOR DIFFUSION OF TRACERS + SOLVER_FOR_DIFFUSION_OF_TRACERS + + + SOLVER OPTION FOR TRACERS DIFFUSION + SOLVER_OPTION_FOR_TRACERS_DIFFUSION + + + PRECONDITIONING FOR DIFFUSION OF TRACERS + PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS + + + ACCURACY FOR DIFFUSION OF TRACERS + ACCURACY_FOR_DIFFUSION_OF_TRACERS + + + MAXIMUM NUMBER OF ITERATIONS FOR DIFFUSION OF TRACERS + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS + + + VALUES OF THE TRACERS AT THE SOURCES + VALUES_OF_THE_TRACERS_AT_THE_SOURCES + + + VALUES OF TRACERS IN THE RAIN + VALUES_OF_TRACERS_IN_THE_RAIN + + + ADVECTION OF TRACERS + ADVECTION_OF_TRACERS + + + IMPLICITATION COEFFICIENT OF TRACERS + IMPLICITATION_COEFFICIENT_OF_TRACERS + + + DIFFUSION OF TRACERS + DIFFUSION_OF_TRACERS + + + COEFFICIENT FOR DIFFUSION OF TRACERS + COEFFICIENT_FOR_DIFFUSION_OF_TRACERS + + + OPTION FOR THE DIFFUSION OF TRACERS + OPTION_FOR_THE_DIFFUSION_OF_TRACERS + + + SCHEME FOR ADVECTION OF TRACERS + SCHEME_FOR_ADVECTION_OF_TRACERS + + + SCHEME OPTION FOR ADVECTION OF TRACERS + SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS + + + MASS-LUMPING ON TRACERS + MASS_LUMPING_ON_TRACERS + + + LAW OF TRACERS DEGRADATION + LAW_OF_TRACERS_DEGRADATION + + + COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION + COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION + + + NUMBER OF DROGUES + NUMBER_OF_DROGUES + + + PRINTOUT PERIOD FOR DROGUES + PRINTOUT_PERIOD_FOR_DROGUES + + + DROGUES FILE + DROGUES_FILE + + + ALGAE TRANSPORT MODEL + ALGAE_TRANSPORT_MODEL + + + ALGAE TYPE + ALGAE_TYPE + + + DIAMETER OF ALGAE + DIAMETER_OF_ALGAE + + + DENSITY OF ALGAE + DENSITY_OF_ALGAE + + + THICKNESS OF ALGAE + THICKNESS_OF_ALGAE + + + OIL SPILL MODEL + OIL_SPILL_MODEL + + + OIL SPILL STEERING FILE + OIL_SPILL_STEERING_FILE + + + STOCHASTIC DIFFUSION MODEL + STOCHASTIC_DIFFUSION_MODEL + + + NUMBER OF LAGRANGIAN DRIFTS + NUMBER_OF_LAGRANGIAN_DRIFTS + + + NUMBER OF WEIRS + NUMBER_OF_WEIRS + + + WEIRS DATA FILE + WEIRS_DATA_FILE + + + TYPE OF WEIRS + TYPE_OF_WEIRS + + + NUMBER OF CULVERTS + NUMBER_OF_CULVERTS + + + CULVERT DATA FILE + CULVERT_DATA_FILE + + + NUMBER OF TUBES + NUMBER_OF_TUBES + + + TUBES DATA FILE + TUBES_DATA_FILE + + + BREACH + BREACH + + + BREACHES DATA FILE + BREACHES_DATA_FILE + + + TIDAL DATA BASE + TIDAL_DATA_BASE + + + TIDAL MODEL FILE + TIDAL_MODEL_FILE + + + ASCII DATABASE FOR TIDE + ASCII_DATABASE_FOR_TIDE + + + BINARY DATABASE 1 FOR TIDE + BINARY_DATABASE_1_FOR_TIDE + + + BINARY DATABASE 2 FOR TIDE + BINARY_DATABASE_2_FOR_TIDE + + + MINOR CONSTITUENTS INFERENCE + MINOR_CONSTITUENTS_INFERENCE + + + HARMONIC CONSTANTS FILE + HARMONIC_CONSTANTS_FILE + + + GEOGRAPHIC SYSTEM + GEOGRAPHIC_SYSTEM + + + ZONE NUMBER IN GEOGRAPHIC SYSTEM + ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM + + + COEFFICIENT TO CALIBRATE SEA LEVEL + COEFFICIENT_TO_CALIBRATE_SEA_LEVEL + + + COEFFICIENT TO CALIBRATE TIDAL RANGE + COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE + + + COEFFICIENT TO CALIBRATE TIDAL VELOCITIES + COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES + + + TIDE GENERATING FORCE + TIDE_GENERATING_FORCE + + + OPTION FOR TIDAL BOUNDARY CONDITIONS + OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS + + + COUPLING WITH + COUPLING_WITH + + + NAMES OF CLANDESTINE VARIABLES + NAMES_OF_CLANDESTINE_VARIABLES + + + COUPLING DIRECTORY + COUPLING_DIRECTORY + + + DELWAQ PRINTOUT PERIOD + DELWAQ_PRINTOUT_PERIOD + + + VOLUMES DELWAQ FILE + VOLUMES_DELWAQ_FILE + + + EXCHANGE AREAS DELWAQ FILE + EXCHANGE_AREAS_DELWAQ_FILE + + + VERTICAL FLUXES DELWAQ FILE + VERTICAL_FLUXES_DELWAQ_FILE + + + SALINITY DELWAQ FILE + SALINITY_DELWAQ_FILE + + + BOTTOM SURFACES DELWAQ FILE + BOTTOM_SURFACES_DELWAQ_FILE + + + EXCHANGES BETWEEN NODES DELWAQ FILE + EXCHANGES_BETWEEN_NODES_DELWAQ_FILE + + + NODES DISTANCES DELWAQ FILE + NODES_DISTANCES_DELWAQ_FILE + + + TEMPERATURE DELWAQ FILE + TEMPERATURE_DELWAQ_FILE + + + VELOCITY DELWAQ FILE + VELOCITY_DELWAQ_FILE + + + DIFFUSIVITY DELWAQ FILE + DIFFUSIVITY_DELWAQ_FILE + + + DELWAQ STEERING FILE + DELWAQ_STEERING_FILE + + + SALINITY FOR DELWAQ + SALINITY_FOR_DELWAQ + + + TEMPERATURE FOR DELWAQ + TEMPERATURE_FOR_DELWAQ + + + VELOCITY FOR DELWAQ + VELOCITY_FOR_DELWAQ + + + DIFFUSIVITY FOR DELWAQ + DIFFUSIVITY_FOR_DELWAQ + + + SISYPHE STEERING FILE + SISYPHE_STEERING_FILE + + + COUPLING PERIOD FOR SISYPHE + COUPLING_PERIOD_FOR_SISYPHE + + + TOMAWAC STEERING FILE + TOMAWAC_STEERING_FILE + + + COUPLING PERIOD FOR TOMAWAC + COUPLING_PERIOD_FOR_TOMAWAC + + + WAQTEL STEERING FILE + WAQTEL_STEERING_FILE + + + NUMBER OF FIRST TIME STEP FOR GRAPHIC PRINTOUTS + NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS + + + GRAPHIC PRINTOUT PERIOD + GRAPHIC_PRINTOUT_PERIOD + + + VARIABLES FOR GRAPHIC PRINTOUTS + VARIABLES_FOR_GRAPHIC_PRINTOUTS + + + NUMBER OF PRIVATE ARRAYS + NUMBER_OF_PRIVATE_ARRAYS + + + NAMES OF PRIVATE VARIABLES + NAMES_OF_PRIVATE_VARIABLES + + + RESULTS FILE FORMAT + RESULTS_FILE_FORMAT + + + RESULTS FILE + RESULTS_FILE + + + BINARY RESULTS FILE FORMAT + BINARY_RESULTS_FILE_FORMAT + + + BINARY RESULTS FILE + BINARY_RESULTS_FILE + + + FORMATTED RESULTS FILE + FORMATTED_RESULTS_FILE + + + CONTROL SECTIONS + CONTROL_SECTIONS + + + PRINTING CUMULATED FLOWRATES + PRINTING_CUMULATED_FLOWRATES + + + COMPATIBLE COMPUTATION OF FLUXES + COMPATIBLE_COMPUTATION_OF_FLUXES + + + SECTIONS INPUT FILE + SECTIONS_INPUT_FILE + + + SECTIONS OUTPUT FILE + SECTIONS_OUTPUT_FILE + + + NUMBER OF FIRST TIME STEP FOR LISTING PRINTOUTS + NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS + + + LISTING PRINTOUT PERIOD + LISTING_PRINTOUT_PERIOD + + + LISTING FOR PRINTOUT PERIOD + LISTING_FOR_PRINTOUT_PERIOD + + + LISTING PRINTOUT + LISTING_PRINTOUT + + + VARIABLES TO BE PRINTED + VARIABLES_TO_BE_PRINTED + + + MASS-BALANCE + MASS_BALANCE + + + INFORMATION ABOUT SOLVER + INFORMATION_ABOUT_SOLVER + + + LIST OF POINTS + LIST_OF_POINTS + + + NAMES OF POINTS + NAMES_OF_POINTS + + + FOURIER ANALYSIS PERIODS + FOURIER_ANALYSIS_PERIODS + + + TIME RANGE FOR FOURIER ANALYSIS + TIME_RANGE_FOR_FOURIER_ANALYSIS + + + NUMBER OF CORRECTIONS OF DISTRIBUTIVE SCHEMES + NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES + + + NUMBER OF SUB-STEPS OF DISTRIBUTIVE SCHEMES + NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES + + + WAVE ENHANCED FRICTION FACTOR + WAVE_ENHANCED_FRICTION_FACTOR + + + LOCAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER + LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + + + GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER + GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + + + PSI SCHEME OPTION + PSI_SCHEME_OPTION + + + PROPAGATION OPTION + PROPAGATION_OPTION + + + FREE INTEGER 20 + FREE_INTEGER_20 + + + VECTOR LENGTH + VECTOR_LENGTH + + + LANGUAGE + LANGUAGE + + + STEERING FILE + STEERING_FILE + + + DICTIONARY + DICTIONARY + + + PARTITIONING TOOL + PARTITIONING_TOOL + + + RELEASE + RELEASE + + + LIST OF FILES + LIST_OF_FILES + + + DESCRIPTION OF LIBRARIES + DESCRIPTION_OF_LIBRARIES + + + DEFAULT EXECUTABLE + DEFAULT_EXECUTABLE + + + DEFAULT PARALLEL EXECUTABLE + DEFAULT_PARALLEL_EXECUTABLE + + + + + + + + + + + + + + + @default lecture du fichier impossible : diff --git a/UiQT5/eficas_fr.ts b/UiQT5/eficas_fr.ts index 942ddfaa..44b218b9 100644 --- a/UiQT5/eficas_fr.ts +++ b/UiQT5/eficas_fr.ts @@ -2,6 +2,2406 @@ @default + + TITLE + TITRE + + + GEOMETRY_FILE_FORMAT + FORMAT DU FICHIER DE GEOMETRIE + + + GEOMETRY_FILE + FICHIER DE GEOMETRIE + + + FORTRAN_FILE + FICHIER FORTRAN + + + BOTTOM_TOPOGRAPHY_FILE + FICHIER DES FONDS + + + BOTTOM_SMOOTHINGS + LISSAGES DU FOND + + + BOUNDARY_CONDITIONS_FILE + FICHIER DES CONDITIONS AUX LIMITES + + + VALIDATION + VALIDATION + + + REFERENCE_FILE_FORMAT + FORMAT DU FICHIER DE REFERENCE + + + REFERENCE_FILE + FICHIER DE REFERENCE + + + BINARY_DATA_FILE_1_FORMAT + FORMAT DU FICHIER DE DONNEES BINAIRE 1 + + + BINARY_DATA_FILE_1 + FICHIER DE DONNEES BINAIRE 1 + + + BINARY_DATA_FILE_2_FORMAT + FORMAT DU FICHIER DE DONNEES BINAIRE 2 + + + BINARY_DATA_FILE_2 + FICHIER DE DONNEES BINAIRE 2 + + + FORMATTED_DATA_FILE_1 + FICHIER DE DONNEES FORMATE 1 + + + FORMATTED_DATA_FILE_2 + FICHIER DE DONNEES FORMATE 2 + + + INITIAL_CONDITIONS + CONDITIONS INITIALES + + + INITIAL_ELEVATION + COTE INITIALE + + + INITIAL_DEPTH + HAUTEUR INITIALE + + + COMPUTATION_CONTINUED + SUITE DE CALCUL + + + PREVIOUS_COMPUTATION_FILE_FORMAT + FORMAT DU FICHIER DU CALCUL PRECEDENT + + + PREVIOUS_COMPUTATION_FILE + FICHIER DU CALCUL PRECEDENT + + + RECORD_NUMBER_FOR_RESTART + ENREGISTREMENT POUR SUITE DE CALCUL + + + INITIAL_TIME_SET_TO_ZERO + REMISE A ZERO DU TEMPS + + + PARALLEL_PROCESSORS + PROCESSEURS PARALLELES + + + CHECKING_THE_MESH + VERIFICATION DU MAILLAGE + + + MAXIMUM_NUMBER_OF_BOUNDARIES + NOMBRE MAXIMUM DE FRONTIERES + + + MAXIMUM_NUMBER_OF_SOURCES + NOMBRE MAXIMUM DE SOURCES + + + MAXIMUM_NUMBER_OF_TRACERS + NOMBRE MAXIMUM DE TRACEURS + + + PRESCRIBED_ELEVATIONS + COTES IMPOSEES + + + PRESCRIBED_FLOWRATES + DEBITS IMPOSES + + + PRESCRIBED_VELOCITIES + VITESSES IMPOSEES + + + STAGE_DISCHARGE_CURVES + COURBES DE TARAGE + + + STAGE_DISCHARGE_CURVES_FILE + FICHIER DES COURBES DE TARAGE + + + VELOCITY_PROFILES + PROFILS DE VITESSE + + + OPTION_FOR_LIQUID_BOUNDARIES + OPTION POUR LES FRONTIERES LIQUIDES + + + LIQUID_BOUNDARIES_FILE + FICHIER DES FRONTIERES LIQUIDES + + + ELEMENTS_MASKED_BY_USER + ELEMENTS MASQUES PAR L'UTILISATEUR + + + DEBUGGER + DEBUGGER + + + TIME_STEP + PAS DE TEMPS + + + NUMBER_OF_TIME_STEPS + NOMBRE DE PAS DE TEMPS + + + DURATION + DUREE DU CALCUL + + + ORIGINAL_DATE_OF_TIME + DATE DE L'ORIGINE DES TEMPS + + + ORIGINAL_HOUR_OF_TIME + HEURE DE L'ORIGINE DES TEMPS + + + STOP_IF_A_STEADY_STATE_IS_REACHED + ARRET SI UN ETAT PERMANENT EST ATTEINT + + + STOP_CRITERIA + CRITERES D'ARRET + + + CONTROL_OF_LIMITS + CONTROLE DES LIMITES + + + LIMIT_VALUES + VALEURS LIMITES + + + VARIABLE_TIME_STEP + PAS DE TEMPS VARIABLE + + + DESIRED_COURANT_NUMBER + NOMBRE DE COURANT SOUHAITE + + + ORIGIN_COORDINATES + COORDONNEES DE L'ORIGINE + + + SPHERICAL_COORDINATES + COORDONNEES SPHERIQUES + + + LATITUDE_OF_ORIGIN_POINT + LATITUDE DU POINT ORIGINE + + + LONGITUDE_OF_ORIGIN_POINT + LONGITUDE DU POINT ORIGINE + + + NORTH + NORD + + + SPATIAL_PROJECTION_TYPE + TYPE DE PROJECTION SPATIALE + + + MAXIMUM_NUMBER_OF_FRICTION_DOMAINS + NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT + + + FRICTION_DATA + DONNEES POUR LE FROTTEMENT + + + FRICTION_DATA_FILE + FICHIER DE DONNEES POUR LE FROTTEMENT + + + LAW_OF_BOTTOM_FRICTION + LOI DE FROTTEMENT SUR LE FOND + + + FRICTION_COEFFICIENT + COEFFICIENT DE FROTTEMENT + + + MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW + VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE + + + DEPTH_IN_FRICTION_TERMS + HAUTEUR DANS LES TERMES DE FROTTEMENT + + + NON_SUBMERGED_VEGETATION_FRICTION + FROTTEMENT POUR LA VEGETATION NON SUBMERGEE + + + DIAMETER_OF_ROUGHNESS_ELEMENTS + DIAMETRE DES ELEMENTS DE FROTTEMENT + + + SPACING_OF_ROUGHNESS_ELEMENTS + ESPACEMENT DES ELEMENTS DE FROTTEMENT + + + LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES + LOI DE FROTTEMENT SUR LES PAROIS LATERALES + + + ROUGHNESS_COEFFICIENT_OF_BOUNDARIES + COEFFICIENT DE RUGOSITE DES BORDS + + + DEFINITION_OF_ZONES + DEFINITION DE ZONES + + + ZONES_FILE + FICHIER DES ZONES + + + WIND + VENT + + + OPTION_FOR_WIND + OPTION DU VENT + + + COEFFICIENT_OF_WIND_INFLUENCE + COEFFICIENT D'INFLUENCE DU VENT + + + WIND_VELOCITY_ALONG_X + VITESSE DU VENT SUIVANT X + + + WIND_VELOCITY_ALONG_Y + VITESSE DU VENT SUIVANT Y + + + SPEED_AND_DIRECTION_OF_WIND + VITESSE ET DIRECTION DU VENT + + + THRESHOLD_DEPTH_FOR_WIND + PROFONDEUR LIMITE POUR LE VENT + + + AIR_PRESSURE + PRESSION ATMOSPHERIQUE + + + VALUE_OF_ATMOSPHERIC_PRESSURE + VALEUR DE LA PRESSION ATMOSPHERIQUE + + + RAIN_OR_EVAPORATION + PLUIE OU EVAPORATION + + + RAIN_OR_EVAPORATION_IN_MM_PER_DAY + PLUIE OU EVAPORATION EN MM PAR JOUR + + + WAVE_DRIVEN_CURRENTS + COURANTS DE HOULE + + + RECORD_NUMBER_IN_WAVE_FILE + NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE + + + PARAMETER_ESTIMATION + ESTIMATION DE PARAMETRE + + + COST_FUNCTION + FONCTION COUT + + + IDENTIFICATION_METHOD + METHODE D'IDENTIFICATION + + + TOLERANCES_FOR_IDENTIFICATION + PRECISIONS POUR L'IDENTIFICATION + + + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION + MAXIMUM D'ITERATIONS POUR L'IDENTIFICATION + + + ABSCISSAE_OF_SOURCES + ABSCISSES DES SOURCES + + + ORDINATES_OF_SOURCES + ORDONNEES DES SOURCES + + + WATER_DISCHARGE_OF_SOURCES + DEBITS DES SOURCES + + + VELOCITIES_OF_THE_SOURCES_ALONG_X + VITESSES DES SOURCES SELON X + + + VELOCITIES_OF_THE_SOURCES_ALONG_Y + VITESSES DES SOURCES SELON Y + + + TYPE_OF_SOURCES + TYPE DES SOURCES + + + SOURCES_FILE + FICHIER DES SOURCES + + + WATER_QUALITY + QUALITE D'EAU + + + WATER_QUALITY_PROCESS + PROCESSUS QUALITE D'EAU + + + CORIOLIS + CORIOLIS + + + CORIOLIS_COEFFICIENT + COEFFICIENT DE CORIOLIS + + + OPTION_FOR_TSUNAMI_GENERATION + OPTION POUR LA GENERATION DE TSUNAMI + + + PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI + PARAMETRES PHYSIQUES DU TSUNAMI + + + WATER_DENSITY + MASSE VOLUMIQUE DE L'EAU + + + GRAVITY_ACCELERATION + ACCELERATION DE LA PESANTEUR + + + VERTICAL_STRUCTURES + STRUCTURES VERTICALES + + + SECONDARY_CURRENTS + COURANTS SECONDAIRES + + + PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS + COEFFICIENT DE PRODUCTION POUR COURANTS SECONDAIRES + + + DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS + COEFFICIENT DE DISSIPATION POUR COURANTS SECONDAIRES + + + VELOCITY_DIFFUSIVITY + COEFFICIENT DE DIFFUSION DES VITESSES + + + TURBULENCE_MODEL + MODELE DE TURBULENCE + + + SOLVER_FOR_K_EPSILON_MODEL + SOLVEUR POUR LE MODELE K-EPSILON + + + OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL + OPTION DU SOLVEUR POUR LE MODELE K-EPSILON + + + PRECONDITIONING_FOR_K_EPSILON_MODEL + PRECONDITIONNEMENT POUR LE MODELE K-EPSILON + + + ACCURACY_OF_K + PRECISION SUR K + + + ACCURACY_OF_EPSILON + PRECISION SUR EPSILON + + + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON + MAXIMUM D'ITERATIONS POUR K ET EPSILON + + + NON_DIMENSIONAL_DISPERSION_COEFFICIENTS + COEFFICIENTS ADIMENSIONNELS DE DISPERSION + + + TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES + REGIME DE TURBULENCE POUR LES PAROIS + + + INFORMATION_ABOUT_K_EPSILON_MODEL + INFORMATIONS SUR LE MODELE K-EPSILON + + + ADVECTION_OF_K_AND_EPSILON + CONVECTION DE K ET EPSILON + + + SCHEME_FOR_ADVECTION_OF_K_EPSILON + SCHEMA POUR LA CONVECTION DU K-EPSILON + + + SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON + OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON + + + TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL + REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON + + + EQUATIONS + EQUATIONS + + + TREATMENT_OF_THE_LINEAR_SYSTEM + TRAITEMENT DU SYSTEME LINEAIRE + + + FINITE_VOLUME_SCHEME + SCHEMA EN VOLUMES FINIS + + + SOLVER + SOLVEUR + + + SOLVER_OPTION + OPTION DU SOLVEUR + + + SOLVER_ACCURACY + PRECISION DU SOLVEUR + + + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER + MAXIMUM D'ITERATIONS POUR LE SOLVEUR + + + CONTINUITY_CORRECTION + CORRECTION DE CONTINUITE + + + PRECONDITIONING + PRECONDITIONNEMENT + + + C_U_PRECONDITIONING + PRECONDITIONNEMENT C-U + + + DISCRETIZATIONS_IN_SPACE + DISCRETISATIONS EN ESPACE + + + IMPLICITATION_FOR_DEPTH + IMPLICITATION POUR LA HAUTEUR + + + IMPLICITATION_FOR_VELOCITY + IMPLICITATION POUR LA VITESSE + + + PROPAGATION + PROPAGATION + + + INITIAL_GUESS_FOR_H + ORDRE DU TIR INITIAL POUR H + + + LINEARIZED_PROPAGATION + PROPAGATION LINEARISEE + + + INITIAL_GUESS_FOR_U + ORDRE DU TIR INITIAL POUR U + + + MEAN_DEPTH_FOR_LINEARIZATION + PROFONDEUR MOYENNE POUR LA LINEARISATION + + + ADVECTION + CONVECTION + + + ADVECTION_OF_H + CONVECTION DE H + + + ADVECTION_OF_U_AND_V + CONVECTION DE U ET V + + + TYPE_OF_ADVECTION + FORME DE LA CONVECTION + + + OPTION_FOR_CHARACTERISTICS + OPTION POUR LES CARACTERISTIQUES + + + SUPG_OPTION + OPTION DE SUPG + + + NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS + NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES + + + MASS_LUMPING_FOR_WEAK_CHARACTERISTICS + MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES + + + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES + MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION + + + UPWIND_COEFFICIENTS + COEFFICIENTS DE DECENTREMENT + + + MASS_LUMPING_ON_H + MASS-LUMPING SUR H + + + MASS_LUMPING_ON_VELOCITY + MASS-LUMPING SUR LA VITESSE + + + SCHEME_FOR_ADVECTION_OF_VELOCITIES + SCHEMA POUR LA CONVECTION DES VITESSES + + + SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES + OPTION DU SCHEMA POUR LA CONVECTION DES VITESSES + + + FREE_SURFACE_GRADIENT_COMPATIBILITY + COMPATIBILITE DU GRADIENT DE SURFACE LIBRE + + + NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES + NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES + + + TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES + TRAITEMENT DES FLUX AUX FRONTIERES + + + DIFFUSION_OF_VELOCITY + DIFFUSION DES VITESSES + + + OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES + OPTION POUR LA DIFFUSION DES VITESSES + + + IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY + IMPLICITATION POUR LA DIFFUSION DES VITESSES + + + MATRIX_STORAGE + STOCKAGE DES MATRICES + + + MATRIX_VECTOR_PRODUCT + PRODUIT MATRICE-VECTEUR + + + NEWMARK_TIME_INTEGRATION_COEFFICIENT + COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK + + + ZERO + ZERO + + + TIDAL_FLATS + BANCS DECOUVRANTS + + + OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS + OPTION DE TRAITEMENT DES BANCS DECOUVRANTS + + + TREATMENT_OF_NEGATIVE_DEPTHS + TRAITEMENT DES HAUTEURS NEGATIVES + + + THRESHOLD_FOR_NEGATIVE_DEPTHS + SEUIL POUR LES PROFONDEURS NEGATIVES + + + THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE + PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE + + + H_CLIPPING + CLIPPING DE H + + + MINIMUM_VALUE_OF_DEPTH + VALEUR MINIMUM DE H + + + NUMBER_OF_TRACERS + NOMBRE DE TRACEURS + + + NAMES_OF_TRACERS + NOMS DES TRACEURS + + + INITIAL_VALUES_OF_TRACERS + VALEURS INITIALES DES TRACEURS + + + DENSITY_EFFECTS + EFFETS DE DENSITE + + + MEAN_TEMPERATURE + TEMPERATURE MOYENNE + + + PRESCRIBED_TRACERS_VALUES + VALEURS IMPOSEES DES TRACEURS + + + SOLVER_FOR_DIFFUSION_OF_TRACERS + SOLVEUR POUR LA DIFFUSION DES TRACEURS + + + SOLVER_OPTION_FOR_TRACERS_DIFFUSION + OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS + + + PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS + PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS + + + ACCURACY_FOR_DIFFUSION_OF_TRACERS + PRECISION POUR LA DIFFUSION DES TRACEURS + + + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS + MAXIMUM D'ITERATIONS POUR LA DIFFUSION DES TRACEURS + + + VALUES_OF_THE_TRACERS_AT_THE_SOURCES + VALEURS DES TRACEURS DES SOURCES + + + VALUES_OF_TRACERS_IN_THE_RAIN + VALEURS DES TRACEURS DANS LA PLUIE + + + ADVECTION_OF_TRACERS + CONVECTION DES TRACEURS + + + IMPLICITATION_COEFFICIENT_OF_TRACERS + COEFFICIENT D'IMPLICITATION DES TRACEURS + + + DIFFUSION_OF_TRACERS + DIFFUSION DES TRACEURS + + + COEFFICIENT_FOR_DIFFUSION_OF_TRACERS + COEFFICIENT DE DIFFUSION DES TRACEURS + + + OPTION_FOR_THE_DIFFUSION_OF_TRACERS + OPTION POUR LA DIFFUSION DES TRACEURS + + + SCHEME_FOR_ADVECTION_OF_TRACERS + SCHEMA POUR LA CONVECTION DES TRACEURS + + + SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS + OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS + + + MASS_LUMPING_ON_TRACERS + MASS-LUMPING SUR LES TRACEURS + + + LAW_OF_TRACERS_DEGRADATION + LOI DE DEGRADATION DES TRACEURS + + + COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION + COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS + + + NUMBER_OF_DROGUES + NOMBRE DE FLOTTEURS + + + PRINTOUT_PERIOD_FOR_DROGUES + PERIODE POUR LES SORTIES DE FLOTTEURS + + + DROGUES_FILE + FICHIER DES FLOTTEURS + + + ALGAE_TRANSPORT_MODEL + MODELE DE TRANSPORT DES ALGUES + + + ALGAE_TYPE + TYPE DES ALGUES + + + DIAMETER_OF_ALGAE + DIAMETRE DES ALGUES + + + DENSITY_OF_ALGAE + MASSE VOLUMIQUE DES ALGUES + + + THICKNESS_OF_ALGAE + EPAISSEUR DES ALGUES + + + OIL_SPILL_MODEL + MODELE DE NAPPES D'HYDROCARBURES + + + OIL_SPILL_STEERING_FILE + FICHIER DE COMMANDES HYDROCARBURES + + + STOCHASTIC_DIFFUSION_MODEL + MODELE DE DIFFUSION STOCHASTIQUE + + + NUMBER_OF_LAGRANGIAN_DRIFTS + NOMBRE DE DERIVES LAGRANGIENNES + + + NUMBER_OF_WEIRS + NOMBRE DE SEUILS + + + WEIRS_DATA_FILE + FICHIER DE DONNEES DES SEUILS + + + TYPE_OF_WEIRS + TYPE DES SEUILS + + + NUMBER_OF_CULVERTS + NOMBRE DE SIPHONS + + + CULVERT_DATA_FILE + FICHIER DE DONNEES DES SIPHONS + + + NUMBER_OF_TUBES + NOMBRE DE BUSES + + + TUBES_DATA_FILE + FICHIER DE DONNEES DES BUSES + + + BREACH + BRECHE + + + BREACHES_DATA_FILE + FICHIER DE DONNEES DES BRECHES + + + TIDAL_DATA_BASE + BASE DE DONNEES DE MAREE + + + TIDAL_MODEL_FILE + FICHIER DU MODELE DE MAREE + + + ASCII_DATABASE_FOR_TIDE + BASE ASCII DE DONNEES DE MAREE + + + BINARY_DATABASE_1_FOR_TIDE + BASE BINAIRE 1 DE DONNEES DE MAREE + + + BINARY_DATABASE_2_FOR_TIDE + BASE BINAIRE 2 DE DONNEES DE MAREE + + + MINOR_CONSTITUENTS_INFERENCE + INTERPOLATION DE COMPOSANTES MINEURES + + + HARMONIC_CONSTANTS_FILE + FICHIER DES CONSTANTES HARMONIQUES + + + GEOGRAPHIC_SYSTEM + SYSTEME GEOGRAPHIQUE + + + ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM + NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE + + + COEFFICIENT_TO_CALIBRATE_SEA_LEVEL + COEFFICIENT DE CALAGE DU NIVEAU DE MER + + + COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE + COEFFICIENT DE CALAGE DU MARNAGE + + + COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES + COEFFICIENT DE CALAGE DES VITESSES DE COURANT + + + TIDE_GENERATING_FORCE + FORCE GENERATRICE DE LA MAREE + + + OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS + OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE + + + COUPLING_WITH + COUPLAGE AVEC + + + NAMES_OF_CLANDESTINE_VARIABLES + NOMS DES VARIABLES CLANDESTINES + + + COUPLING_DIRECTORY + DOSSIER DE COUPLAGE + + + DELWAQ_PRINTOUT_PERIOD + PERIODE DE SORTIE POUR DELWAQ + + + VOLUMES_DELWAQ_FILE + FICHIER DELWAQ DES VOLUMES + + + EXCHANGE_AREAS_DELWAQ_FILE + FICHIER DELWAQ DES SURFACES DE FLUX + + + VERTICAL_FLUXES_DELWAQ_FILE + FICHIER DELWAQ DES FLUX VERTICAUX + + + SALINITY_DELWAQ_FILE + FICHIER DELWAQ DE LA SALINITE + + + BOTTOM_SURFACES_DELWAQ_FILE + FICHIER DELWAQ DES SURFACES DU FOND + + + EXCHANGES_BETWEEN_NODES_DELWAQ_FILE + FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS + + + NODES_DISTANCES_DELWAQ_FILE + FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS + + + TEMPERATURE_DELWAQ_FILE + FICHIER DELWAQ DE LA TEMPERATURE + + + VELOCITY_DELWAQ_FILE + FICHIER DELWAQ DE LA VITESSE + + + DIFFUSIVITY_DELWAQ_FILE + FICHIER DELWAQ DE LA DIFFUSION + + + DELWAQ_STEERING_FILE + FICHIER DE COMMANDE DELWAQ + + + SALINITY_FOR_DELWAQ + SALINITE POUR DELWAQ + + + TEMPERATURE_FOR_DELWAQ + TEMPERATURE POUR DELWAQ + + + VELOCITY_FOR_DELWAQ + VITESSE POUR DELWAQ + + + DIFFUSIVITY_FOR_DELWAQ + DIFFUSION POUR DELWAQ + + + SISYPHE_STEERING_FILE + FICHIER DES PARAMETRES DE SISYPHE + + + COUPLING_PERIOD_FOR_SISYPHE + PERIODE DE COUPLAGE POUR SISYPHE + + + TOMAWAC_STEERING_FILE + FICHIER DES PARAMETRES DE TOMAWAC + + + COUPLING_PERIOD_FOR_TOMAWAC + PERIODE DE COUPLAGE POUR TOMAWAC + + + WAQTEL_STEERING_FILE + FICHIER DES PARAMETRES DE WAQTEL + + + NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS + NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES + + + GRAPHIC_PRINTOUT_PERIOD + PERIODE POUR LES SORTIES GRAPHIQUES + + + VARIABLES_FOR_GRAPHIC_PRINTOUTS + VARIABLES POUR LES SORTIES GRAPHIQUES + + + NUMBER_OF_PRIVATE_ARRAYS + NOMBRE DE TABLEAUX PRIVES + + + NAMES_OF_PRIVATE_VARIABLES + NOMS DES VARIABLES PRIVEES + + + RESULTS_FILE_FORMAT + FORMAT DU FICHIER DES RESULTATS + + + RESULTS_FILE + FICHIER DES RESULTATS + + + BINARY_RESULTS_FILE_FORMAT + FORMAT DU FICHIER DE RESULTATS BINAIRE + + + BINARY_RESULTS_FILE + FICHIER DE RESULTATS BINAIRE + + + FORMATTED_RESULTS_FILE + FICHIER DE RESULTATS FORMATE + + + CONTROL_SECTIONS + SECTIONS DE CONTROLE + + + PRINTING_CUMULATED_FLOWRATES + IMPRESSION DU CUMUL DES FLUX + + + COMPATIBLE_COMPUTATION_OF_FLUXES + CALCUL COMPATIBLE DES FLUX + + + SECTIONS_INPUT_FILE + FICHIER DES SECTIONS DE CONTROLE + + + SECTIONS_OUTPUT_FILE + FICHIER DE SORTIE DES SECTIONS DE CONTROLE + + + NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS + NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING + + + LISTING_PRINTOUT_PERIOD + PERIODE DE SORTIE LISTING + + + LISTING_FOR_PRINTOUT_PERIOD + PERIODE POUR LES SORTIES LISTING + + + LISTING_PRINTOUT + SORTIE LISTING + + + VARIABLES_TO_BE_PRINTED + VARIABLES A IMPRIMER + + + MASS_BALANCE + BILAN DE MASSE + + + INFORMATION_ABOUT_SOLVER + INFORMATIONS SUR LE SOLVEUR + + + LIST_OF_POINTS + LISTE DE POINTS + + + NAMES_OF_POINTS + NOMS DES POINTS + + + FOURIER_ANALYSIS_PERIODS + PERIODES D'ANALYSE DE FOURIER + + + TIME_RANGE_FOR_FOURIER_ANALYSIS + BORNES EN TEMPS POUR L'ANALYSE DE FOURIER + + + NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES + NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS + + + NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES + NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS + + + WAVE_ENHANCED_FRICTION_FACTOR + AUGMENTATION DU FROTTEMENT PAR LA HOULE + + + LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER + + + GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER + + + PSI_SCHEME_OPTION + OPTION DU SCHEMA PSI + + + PROPAGATION_OPTION + OPTION DE PROPAGATION + + + FREE_INTEGER_20 + ENTIER LIBRE 20 + + + VECTOR_LENGTH + LONGUEUR DU VECTEUR + + + LANGUAGE + LANGUE + + + STEERING_FILE + FICHIER DES PARAMETRES + + + DICTIONARY + DICTIONNAIRE + + + PARTITIONING_TOOL + PARTITIONNEUR + + + RELEASE + NUMERO DE VERSION + + + LIST_OF_FILES + LISTE DES FICHIERS + + + DESCRIPTION_OF_LIBRARIES + DESCRIPTION DES LIBRAIRIES + + + DEFAULT_EXECUTABLE + EXECUTABLE PAR DEFAUT + + + DEFAULT_PARALLEL_EXECUTABLE + EXECUTABLE PARALLELE PAR DEFAUT + + + TITRE + TITLE + + + FORMAT DU FICHIER DE GEOMETRIE + GEOMETRY_FILE_FORMAT + + + FICHIER DE GEOMETRIE + GEOMETRY_FILE + + + FICHIER FORTRAN + FORTRAN_FILE + + + FICHIER DES FONDS + BOTTOM_TOPOGRAPHY_FILE + + + LISSAGES DU FOND + BOTTOM_SMOOTHINGS + + + FICHIER DES CONDITIONS AUX LIMITES + BOUNDARY_CONDITIONS_FILE + + + VALIDATION + VALIDATION + + + FORMAT DU FICHIER DE REFERENCE + REFERENCE_FILE_FORMAT + + + FICHIER DE REFERENCE + REFERENCE_FILE + + + FORMAT DU FICHIER DE DONNEES BINAIRE 1 + BINARY_DATA_FILE_1_FORMAT + + + FICHIER DE DONNEES BINAIRE 1 + BINARY_DATA_FILE_1 + + + FORMAT DU FICHIER DE DONNEES BINAIRE 2 + BINARY_DATA_FILE_2_FORMAT + + + FICHIER DE DONNEES BINAIRE 2 + BINARY_DATA_FILE_2 + + + FICHIER DE DONNEES FORMATE 1 + FORMATTED_DATA_FILE_1 + + + FICHIER DE DONNEES FORMATE 2 + FORMATTED_DATA_FILE_2 + + + CONDITIONS INITIALES + INITIAL_CONDITIONS + + + COTE INITIALE + INITIAL_ELEVATION + + + HAUTEUR INITIALE + INITIAL_DEPTH + + + SUITE DE CALCUL + COMPUTATION_CONTINUED + + + FORMAT DU FICHIER DU CALCUL PRECEDENT + PREVIOUS_COMPUTATION_FILE_FORMAT + + + FICHIER DU CALCUL PRECEDENT + PREVIOUS_COMPUTATION_FILE + + + ENREGISTREMENT POUR SUITE DE CALCUL + RECORD_NUMBER_FOR_RESTART + + + REMISE A ZERO DU TEMPS + INITIAL_TIME_SET_TO_ZERO + + + PROCESSEURS PARALLELES + PARALLEL_PROCESSORS + + + VERIFICATION DU MAILLAGE + CHECKING_THE_MESH + + + NOMBRE MAXIMUM DE FRONTIERES + MAXIMUM_NUMBER_OF_BOUNDARIES + + + NOMBRE MAXIMUM DE SOURCES + MAXIMUM_NUMBER_OF_SOURCES + + + NOMBRE MAXIMUM DE TRACEURS + MAXIMUM_NUMBER_OF_TRACERS + + + COTES IMPOSEES + PRESCRIBED_ELEVATIONS + + + DEBITS IMPOSES + PRESCRIBED_FLOWRATES + + + VITESSES IMPOSEES + PRESCRIBED_VELOCITIES + + + COURBES DE TARAGE + STAGE_DISCHARGE_CURVES + + + FICHIER DES COURBES DE TARAGE + STAGE_DISCHARGE_CURVES_FILE + + + PROFILS DE VITESSE + VELOCITY_PROFILES + + + OPTION POUR LES FRONTIERES LIQUIDES + OPTION_FOR_LIQUID_BOUNDARIES + + + FICHIER DES FRONTIERES LIQUIDES + LIQUID_BOUNDARIES_FILE + + + ELEMENTS MASQUES PAR L'UTILISATEUR + ELEMENTS_MASKED_BY_USER + + + DEBUGGER + DEBUGGER + + + PAS DE TEMPS + TIME_STEP + + + NOMBRE DE PAS DE TEMPS + NUMBER_OF_TIME_STEPS + + + DUREE DU CALCUL + DURATION + + + DATE DE L'ORIGINE DES TEMPS + ORIGINAL_DATE_OF_TIME + + + HEURE DE L'ORIGINE DES TEMPS + ORIGINAL_HOUR_OF_TIME + + + ARRET SI UN ETAT PERMANENT EST ATTEINT + STOP_IF_A_STEADY_STATE_IS_REACHED + + + CRITERES D'ARRET + STOP_CRITERIA + + + CONTROLE DES LIMITES + CONTROL_OF_LIMITS + + + VALEURS LIMITES + LIMIT_VALUES + + + PAS DE TEMPS VARIABLE + VARIABLE_TIME_STEP + + + NOMBRE DE COURANT SOUHAITE + DESIRED_COURANT_NUMBER + + + COORDONNEES DE L'ORIGINE + ORIGIN_COORDINATES + + + COORDONNEES SPHERIQUES + SPHERICAL_COORDINATES + + + LATITUDE DU POINT ORIGINE + LATITUDE_OF_ORIGIN_POINT + + + LONGITUDE DU POINT ORIGINE + LONGITUDE_OF_ORIGIN_POINT + + + NORD + NORTH + + + TYPE DE PROJECTION SPATIALE + SPATIAL_PROJECTION_TYPE + + + NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT + MAXIMUM_NUMBER_OF_FRICTION_DOMAINS + + + DONNEES POUR LE FROTTEMENT + FRICTION_DATA + + + FICHIER DE DONNEES POUR LE FROTTEMENT + FRICTION_DATA_FILE + + + LOI DE FROTTEMENT SUR LE FOND + LAW_OF_BOTTOM_FRICTION + + + COEFFICIENT DE FROTTEMENT + FRICTION_COEFFICIENT + + + VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE + MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW + + + HAUTEUR DANS LES TERMES DE FROTTEMENT + DEPTH_IN_FRICTION_TERMS + + + FROTTEMENT POUR LA VEGETATION NON SUBMERGEE + NON_SUBMERGED_VEGETATION_FRICTION + + + DIAMETRE DES ELEMENTS DE FROTTEMENT + DIAMETER_OF_ROUGHNESS_ELEMENTS + + + ESPACEMENT DES ELEMENTS DE FROTTEMENT + SPACING_OF_ROUGHNESS_ELEMENTS + + + LOI DE FROTTEMENT SUR LES PAROIS LATERALES + LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES + + + COEFFICIENT DE RUGOSITE DES BORDS + ROUGHNESS_COEFFICIENT_OF_BOUNDARIES + + + DEFINITION DE ZONES + DEFINITION_OF_ZONES + + + FICHIER DES ZONES + ZONES_FILE + + + VENT + WIND + + + OPTION DU VENT + OPTION_FOR_WIND + + + COEFFICIENT D'INFLUENCE DU VENT + COEFFICIENT_OF_WIND_INFLUENCE + + + VITESSE DU VENT SUIVANT X + WIND_VELOCITY_ALONG_X + + + VITESSE DU VENT SUIVANT Y + WIND_VELOCITY_ALONG_Y + + + VITESSE ET DIRECTION DU VENT + SPEED_AND_DIRECTION_OF_WIND + + + PROFONDEUR LIMITE POUR LE VENT + THRESHOLD_DEPTH_FOR_WIND + + + PRESSION ATMOSPHERIQUE + AIR_PRESSURE + + + VALEUR DE LA PRESSION ATMOSPHERIQUE + VALUE_OF_ATMOSPHERIC_PRESSURE + + + PLUIE OU EVAPORATION + RAIN_OR_EVAPORATION + + + PLUIE OU EVAPORATION EN MM PAR JOUR + RAIN_OR_EVAPORATION_IN_MM_PER_DAY + + + COURANTS DE HOULE + WAVE_DRIVEN_CURRENTS + + + NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE + RECORD_NUMBER_IN_WAVE_FILE + + + ESTIMATION DE PARAMETRE + PARAMETER_ESTIMATION + + + FONCTION COUT + COST_FUNCTION + + + METHODE D'IDENTIFICATION + IDENTIFICATION_METHOD + + + PRECISIONS POUR L'IDENTIFICATION + TOLERANCES_FOR_IDENTIFICATION + + + MAXIMUM D'ITERATIONS POUR L'IDENTIFICATION + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION + + + ABSCISSES DES SOURCES + ABSCISSAE_OF_SOURCES + + + ORDONNEES DES SOURCES + ORDINATES_OF_SOURCES + + + DEBITS DES SOURCES + WATER_DISCHARGE_OF_SOURCES + + + VITESSES DES SOURCES SELON X + VELOCITIES_OF_THE_SOURCES_ALONG_X + + + VITESSES DES SOURCES SELON Y + VELOCITIES_OF_THE_SOURCES_ALONG_Y + + + TYPE DES SOURCES + TYPE_OF_SOURCES + + + FICHIER DES SOURCES + SOURCES_FILE + + + QUALITE D'EAU + WATER_QUALITY + + + PROCESSUS QUALITE D'EAU + WATER_QUALITY_PROCESS + + + CORIOLIS + CORIOLIS + + + COEFFICIENT DE CORIOLIS + CORIOLIS_COEFFICIENT + + + OPTION POUR LA GENERATION DE TSUNAMI + OPTION_FOR_TSUNAMI_GENERATION + + + PARAMETRES PHYSIQUES DU TSUNAMI + PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI + + + MASSE VOLUMIQUE DE L'EAU + WATER_DENSITY + + + ACCELERATION DE LA PESANTEUR + GRAVITY_ACCELERATION + + + STRUCTURES VERTICALES + VERTICAL_STRUCTURES + + + COURANTS SECONDAIRES + SECONDARY_CURRENTS + + + COEFFICIENT DE PRODUCTION POUR COURANTS SECONDAIRES + PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS + + + COEFFICIENT DE DISSIPATION POUR COURANTS SECONDAIRES + DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS + + + COEFFICIENT DE DIFFUSION DES VITESSES + VELOCITY_DIFFUSIVITY + + + MODELE DE TURBULENCE + TURBULENCE_MODEL + + + SOLVEUR POUR LE MODELE K-EPSILON + SOLVER_FOR_K_EPSILON_MODEL + + + OPTION DU SOLVEUR POUR LE MODELE K-EPSILON + OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL + + + PRECONDITIONNEMENT POUR LE MODELE K-EPSILON + PRECONDITIONING_FOR_K_EPSILON_MODEL + + + PRECISION SUR K + ACCURACY_OF_K + + + PRECISION SUR EPSILON + ACCURACY_OF_EPSILON + + + MAXIMUM D'ITERATIONS POUR K ET EPSILON + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON + + + COEFFICIENTS ADIMENSIONNELS DE DISPERSION + NON_DIMENSIONAL_DISPERSION_COEFFICIENTS + + + REGIME DE TURBULENCE POUR LES PAROIS + TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES + + + INFORMATIONS SUR LE MODELE K-EPSILON + INFORMATION_ABOUT_K_EPSILON_MODEL + + + CONVECTION DE K ET EPSILON + ADVECTION_OF_K_AND_EPSILON + + + SCHEMA POUR LA CONVECTION DU K-EPSILON + SCHEME_FOR_ADVECTION_OF_K_EPSILON + + + OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON + SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON + + + REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON + TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL + + + EQUATIONS + EQUATIONS + + + TRAITEMENT DU SYSTEME LINEAIRE + TREATMENT_OF_THE_LINEAR_SYSTEM + + + SCHEMA EN VOLUMES FINIS + FINITE_VOLUME_SCHEME + + + SOLVEUR + SOLVER + + + OPTION DU SOLVEUR + SOLVER_OPTION + + + PRECISION DU SOLVEUR + SOLVER_ACCURACY + + + MAXIMUM D'ITERATIONS POUR LE SOLVEUR + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER + + + CORRECTION DE CONTINUITE + CONTINUITY_CORRECTION + + + PRECONDITIONNEMENT + PRECONDITIONING + + + PRECONDITIONNEMENT C-U + C_U_PRECONDITIONING + + + DISCRETISATIONS EN ESPACE + DISCRETIZATIONS_IN_SPACE + + + IMPLICITATION POUR LA HAUTEUR + IMPLICITATION_FOR_DEPTH + + + IMPLICITATION POUR LA VITESSE + IMPLICITATION_FOR_VELOCITY + + + PROPAGATION + PROPAGATION + + + ORDRE DU TIR INITIAL POUR H + INITIAL_GUESS_FOR_H + + + PROPAGATION LINEARISEE + LINEARIZED_PROPAGATION + + + ORDRE DU TIR INITIAL POUR U + INITIAL_GUESS_FOR_U + + + PROFONDEUR MOYENNE POUR LA LINEARISATION + MEAN_DEPTH_FOR_LINEARIZATION + + + CONVECTION + ADVECTION + + + CONVECTION DE H + ADVECTION_OF_H + + + CONVECTION DE U ET V + ADVECTION_OF_U_AND_V + + + FORME DE LA CONVECTION + TYPE_OF_ADVECTION + + + OPTION POUR LES CARACTERISTIQUES + OPTION_FOR_CHARACTERISTICS + + + OPTION DE SUPG + SUPG_OPTION + + + NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES + NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS + + + MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES + MASS_LUMPING_FOR_WEAK_CHARACTERISTICS + + + MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES + + + COEFFICIENTS DE DECENTREMENT + UPWIND_COEFFICIENTS + + + MASS-LUMPING SUR H + MASS_LUMPING_ON_H + + + MASS-LUMPING SUR LA VITESSE + MASS_LUMPING_ON_VELOCITY + + + SCHEMA POUR LA CONVECTION DES VITESSES + SCHEME_FOR_ADVECTION_OF_VELOCITIES + + + OPTION DU SCHEMA POUR LA CONVECTION DES VITESSES + SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES + + + COMPATIBILITE DU GRADIENT DE SURFACE LIBRE + FREE_SURFACE_GRADIENT_COMPATIBILITY + + + NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES + NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES + + + TRAITEMENT DES FLUX AUX FRONTIERES + TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES + + + DIFFUSION DES VITESSES + DIFFUSION_OF_VELOCITY + + + OPTION POUR LA DIFFUSION DES VITESSES + OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES + + + IMPLICITATION POUR LA DIFFUSION DES VITESSES + IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY + + + STOCKAGE DES MATRICES + MATRIX_STORAGE + + + PRODUIT MATRICE-VECTEUR + MATRIX_VECTOR_PRODUCT + + + COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK + NEWMARK_TIME_INTEGRATION_COEFFICIENT + + + ZERO + ZERO + + + BANCS DECOUVRANTS + TIDAL_FLATS + + + OPTION DE TRAITEMENT DES BANCS DECOUVRANTS + OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS + + + TRAITEMENT DES HAUTEURS NEGATIVES + TREATMENT_OF_NEGATIVE_DEPTHS + + + SEUIL POUR LES PROFONDEURS NEGATIVES + THRESHOLD_FOR_NEGATIVE_DEPTHS + + + PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE + THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE + + + CLIPPING DE H + H_CLIPPING + + + VALEUR MINIMUM DE H + MINIMUM_VALUE_OF_DEPTH + + + NOMBRE DE TRACEURS + NUMBER_OF_TRACERS + + + NOMS DES TRACEURS + NAMES_OF_TRACERS + + + VALEURS INITIALES DES TRACEURS + INITIAL_VALUES_OF_TRACERS + + + EFFETS DE DENSITE + DENSITY_EFFECTS + + + TEMPERATURE MOYENNE + MEAN_TEMPERATURE + + + VALEURS IMPOSEES DES TRACEURS + PRESCRIBED_TRACERS_VALUES + + + SOLVEUR POUR LA DIFFUSION DES TRACEURS + SOLVER_FOR_DIFFUSION_OF_TRACERS + + + OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS + SOLVER_OPTION_FOR_TRACERS_DIFFUSION + + + PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS + PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS + + + PRECISION POUR LA DIFFUSION DES TRACEURS + ACCURACY_FOR_DIFFUSION_OF_TRACERS + + + MAXIMUM D'ITERATIONS POUR LA DIFFUSION DES TRACEURS + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS + + + VALEURS DES TRACEURS DES SOURCES + VALUES_OF_THE_TRACERS_AT_THE_SOURCES + + + VALEURS DES TRACEURS DANS LA PLUIE + VALUES_OF_TRACERS_IN_THE_RAIN + + + CONVECTION DES TRACEURS + ADVECTION_OF_TRACERS + + + COEFFICIENT D'IMPLICITATION DES TRACEURS + IMPLICITATION_COEFFICIENT_OF_TRACERS + + + DIFFUSION DES TRACEURS + DIFFUSION_OF_TRACERS + + + COEFFICIENT DE DIFFUSION DES TRACEURS + COEFFICIENT_FOR_DIFFUSION_OF_TRACERS + + + OPTION POUR LA DIFFUSION DES TRACEURS + OPTION_FOR_THE_DIFFUSION_OF_TRACERS + + + SCHEMA POUR LA CONVECTION DES TRACEURS + SCHEME_FOR_ADVECTION_OF_TRACERS + + + OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS + SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS + + + MASS-LUMPING SUR LES TRACEURS + MASS_LUMPING_ON_TRACERS + + + LOI DE DEGRADATION DES TRACEURS + LAW_OF_TRACERS_DEGRADATION + + + COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS + COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION + + + NOMBRE DE FLOTTEURS + NUMBER_OF_DROGUES + + + PERIODE POUR LES SORTIES DE FLOTTEURS + PRINTOUT_PERIOD_FOR_DROGUES + + + FICHIER DES FLOTTEURS + DROGUES_FILE + + + MODELE DE TRANSPORT DES ALGUES + ALGAE_TRANSPORT_MODEL + + + TYPE DES ALGUES + ALGAE_TYPE + + + DIAMETRE DES ALGUES + DIAMETER_OF_ALGAE + + + MASSE VOLUMIQUE DES ALGUES + DENSITY_OF_ALGAE + + + EPAISSEUR DES ALGUES + THICKNESS_OF_ALGAE + + + MODELE DE NAPPES D'HYDROCARBURES + OIL_SPILL_MODEL + + + FICHIER DE COMMANDES HYDROCARBURES + OIL_SPILL_STEERING_FILE + + + MODELE DE DIFFUSION STOCHASTIQUE + STOCHASTIC_DIFFUSION_MODEL + + + NOMBRE DE DERIVES LAGRANGIENNES + NUMBER_OF_LAGRANGIAN_DRIFTS + + + NOMBRE DE SEUILS + NUMBER_OF_WEIRS + + + FICHIER DE DONNEES DES SEUILS + WEIRS_DATA_FILE + + + TYPE DES SEUILS + TYPE_OF_WEIRS + + + NOMBRE DE SIPHONS + NUMBER_OF_CULVERTS + + + FICHIER DE DONNEES DES SIPHONS + CULVERT_DATA_FILE + + + NOMBRE DE BUSES + NUMBER_OF_TUBES + + + FICHIER DE DONNEES DES BUSES + TUBES_DATA_FILE + + + BRECHE + BREACH + + + FICHIER DE DONNEES DES BRECHES + BREACHES_DATA_FILE + + + BASE DE DONNEES DE MAREE + TIDAL_DATA_BASE + + + FICHIER DU MODELE DE MAREE + TIDAL_MODEL_FILE + + + BASE ASCII DE DONNEES DE MAREE + ASCII_DATABASE_FOR_TIDE + + + BASE BINAIRE 1 DE DONNEES DE MAREE + BINARY_DATABASE_1_FOR_TIDE + + + BASE BINAIRE 2 DE DONNEES DE MAREE + BINARY_DATABASE_2_FOR_TIDE + + + INTERPOLATION DE COMPOSANTES MINEURES + MINOR_CONSTITUENTS_INFERENCE + + + FICHIER DES CONSTANTES HARMONIQUES + HARMONIC_CONSTANTS_FILE + + + SYSTEME GEOGRAPHIQUE + GEOGRAPHIC_SYSTEM + + + NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE + ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM + + + COEFFICIENT DE CALAGE DU NIVEAU DE MER + COEFFICIENT_TO_CALIBRATE_SEA_LEVEL + + + COEFFICIENT DE CALAGE DU MARNAGE + COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE + + + COEFFICIENT DE CALAGE DES VITESSES DE COURANT + COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES + + + FORCE GENERATRICE DE LA MAREE + TIDE_GENERATING_FORCE + + + OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE + OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS + + + COUPLAGE AVEC + COUPLING_WITH + + + NOMS DES VARIABLES CLANDESTINES + NAMES_OF_CLANDESTINE_VARIABLES + + + DOSSIER DE COUPLAGE + COUPLING_DIRECTORY + + + PERIODE DE SORTIE POUR DELWAQ + DELWAQ_PRINTOUT_PERIOD + + + FICHIER DELWAQ DES VOLUMES + VOLUMES_DELWAQ_FILE + + + FICHIER DELWAQ DES SURFACES DE FLUX + EXCHANGE_AREAS_DELWAQ_FILE + + + FICHIER DELWAQ DES FLUX VERTICAUX + VERTICAL_FLUXES_DELWAQ_FILE + + + FICHIER DELWAQ DE LA SALINITE + SALINITY_DELWAQ_FILE + + + FICHIER DELWAQ DES SURFACES DU FOND + BOTTOM_SURFACES_DELWAQ_FILE + + + FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS + EXCHANGES_BETWEEN_NODES_DELWAQ_FILE + + + FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS + NODES_DISTANCES_DELWAQ_FILE + + + FICHIER DELWAQ DE LA TEMPERATURE + TEMPERATURE_DELWAQ_FILE + + + FICHIER DELWAQ DE LA VITESSE + VELOCITY_DELWAQ_FILE + + + FICHIER DELWAQ DE LA DIFFUSION + DIFFUSIVITY_DELWAQ_FILE + + + FICHIER DE COMMANDE DELWAQ + DELWAQ_STEERING_FILE + + + SALINITE POUR DELWAQ + SALINITY_FOR_DELWAQ + + + TEMPERATURE POUR DELWAQ + TEMPERATURE_FOR_DELWAQ + + + VITESSE POUR DELWAQ + VELOCITY_FOR_DELWAQ + + + DIFFUSION POUR DELWAQ + DIFFUSIVITY_FOR_DELWAQ + + + FICHIER DES PARAMETRES DE SISYPHE + SISYPHE_STEERING_FILE + + + PERIODE DE COUPLAGE POUR SISYPHE + COUPLING_PERIOD_FOR_SISYPHE + + + FICHIER DES PARAMETRES DE TOMAWAC + TOMAWAC_STEERING_FILE + + + PERIODE DE COUPLAGE POUR TOMAWAC + COUPLING_PERIOD_FOR_TOMAWAC + + + FICHIER DES PARAMETRES DE WAQTEL + WAQTEL_STEERING_FILE + + + NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES + NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS + + + PERIODE POUR LES SORTIES GRAPHIQUES + GRAPHIC_PRINTOUT_PERIOD + + + VARIABLES POUR LES SORTIES GRAPHIQUES + VARIABLES_FOR_GRAPHIC_PRINTOUTS + + + NOMBRE DE TABLEAUX PRIVES + NUMBER_OF_PRIVATE_ARRAYS + + + NOMS DES VARIABLES PRIVEES + NAMES_OF_PRIVATE_VARIABLES + + + FORMAT DU FICHIER DES RESULTATS + RESULTS_FILE_FORMAT + + + FICHIER DES RESULTATS + RESULTS_FILE + + + FORMAT DU FICHIER DE RESULTATS BINAIRE + BINARY_RESULTS_FILE_FORMAT + + + FICHIER DE RESULTATS BINAIRE + BINARY_RESULTS_FILE + + + FICHIER DE RESULTATS FORMATE + FORMATTED_RESULTS_FILE + + + SECTIONS DE CONTROLE + CONTROL_SECTIONS + + + IMPRESSION DU CUMUL DES FLUX + PRINTING_CUMULATED_FLOWRATES + + + CALCUL COMPATIBLE DES FLUX + COMPATIBLE_COMPUTATION_OF_FLUXES + + + FICHIER DES SECTIONS DE CONTROLE + SECTIONS_INPUT_FILE + + + FICHIER DE SORTIE DES SECTIONS DE CONTROLE + SECTIONS_OUTPUT_FILE + + + NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING + NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS + + + PERIODE DE SORTIE LISTING + LISTING_PRINTOUT_PERIOD + + + PERIODE POUR LES SORTIES LISTING + LISTING_FOR_PRINTOUT_PERIOD + + + SORTIE LISTING + LISTING_PRINTOUT + + + VARIABLES A IMPRIMER + VARIABLES_TO_BE_PRINTED + + + BILAN DE MASSE + MASS_BALANCE + + + INFORMATIONS SUR LE SOLVEUR + INFORMATION_ABOUT_SOLVER + + + LISTE DE POINTS + LIST_OF_POINTS + + + NOMS DES POINTS + NAMES_OF_POINTS + + + PERIODES D'ANALYSE DE FOURIER + FOURIER_ANALYSIS_PERIODS + + + BORNES EN TEMPS POUR L'ANALYSE DE FOURIER + TIME_RANGE_FOR_FOURIER_ANALYSIS + + + NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS + NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES + + + NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS + NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES + + + AUGMENTATION DU FROTTEMENT PAR LA HOULE + WAVE_ENHANCED_FRICTION_FACTOR + + + NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER + LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + + + NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER + GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER + + + OPTION DU SCHEMA PSI + PSI_SCHEME_OPTION + + + OPTION DE PROPAGATION + PROPAGATION_OPTION + + + ENTIER LIBRE 20 + FREE_INTEGER_20 + + + LONGUEUR DU VECTEUR + VECTOR_LENGTH + + + LANGUE + LANGUAGE + + + FICHIER DES PARAMETRES + STEERING_FILE + + + DICTIONNAIRE + DICTIONARY + + + PARTITIONNEUR + PARTITIONING_TOOL + + + NUMERO DE VERSION + RELEASE + + + LISTE DES FICHIERS + LIST_OF_FILES + + + DESCRIPTION DES LIBRAIRIES + DESCRIPTION_OF_LIBRARIES + + + EXECUTABLE PAR DEFAUT + DEFAULT_EXECUTABLE + + + EXECUTABLE PARALLELE PAR DEFAUT + DEFAULT_PARALLEL_EXECUTABLE + + + Cote nulle + Zero elevation + + + Cote constante + Constant elevation + + + Hauteur nulle + Zero depth + + + Hauteur constante + Constant depth + + + Special + Special + + + Altimetrie satellite TPXO + TPXO satellite altimetry + Year Annee @@ -330,8 +2730,6 @@ Degradation Degradation - - Values_Of_Tracers_In_The_Rain Valeurs_Des_Traceurs_Dans_La_Pluie diff --git a/UiQT5/eficas_fr_avec_apostrophe.ts b/UiQT5/eficas_fr_avec_apostrophe.ts new file mode 100644 index 00000000..8a6b96d3 --- /dev/null +++ b/UiQT5/eficas_fr_avec_apostrophe.ts @@ -0,0 +1,4959 @@ + + + + @default + + INITIALIZATION + INITIALISATION + + + Input_Files + Fichiers_D_Entree + + + Formatted_And_Binary_Files + Fichiers_Formates_Et_Binaires + + + Initial_State + Etat_Initial + + + Coupling + Couplage + + + BOUNDARY_CONDITIONS + CONDITIONS_AUX_LIMITES + + + NUMERICAL_PARAMETERS + PARAMETRES_NUMERIQUES + + + PHYSICAL_PARAMETERS + PARAMETRES_PHYSIQUES + + + OUTPUT_FILES + FICHIERS_DE_SORTIE + + + CONSTRUCTION_WORKS_MODELLING + MODELISATION_DES_OUVRAGES + + + GENERAL_PARAMETERS + PARAMETRES_GENERAUX + + + PARTICLE_TRANSPORT + TRANSPORT_DE_PARTICULE + + + Computation_Continued_Settings + Parametres_De_Continuation_Du_Calcul + + + Inputs_Outputs_For_Tide + Entrees_Sorties_Pour_La_Maree + + + Location + Localisation + + + Physical_Parameters + Parametres_Physiques + + + Liquid_Boundaries + Frontieres_Liquide + + + Solver_Definition + Definition_Du_Solver + + + Linearity + Linearite + + + Precondionning_Setting + Parametres_Preconditionnement + + + Matrix_Informations + Stockage_Des_Matrices + + + Advection + Advection + + + Propagation + Propagation + + + Diffusion + Diffusion + + + Discretization_Implicitation + Discretisation + + + Tidal + Maree + + + Various + Divers + + + Friction_Setting + Parametres_De_Friction + + + Meteorology + Meteorologie + + + Wave + Houle + + + Parameters_Estimation + Parametres_A_Estimer + + + Tolerances_For_Identification + Tolerances_Pour_L_Identification + + + Sources + Sources + + + Coriolis_Settings + Parametres_Pour_Coriolis + + + Various_For_Numerical + Divers_Parametres_Numeriques + + + Secondary_Currents_Settings + Parametres_Pour_Les_Courants_Secondaires + + + Tsunami + Tsunami + + + Graphic_And_Listing_Printouts + Sorties_Listing_et_Graphiques + + + Controls + Controles + + + Fourier + Fourier + + + General_Location + Localisation_Generale + + + Time + Temps + + + Original_Date_Of_Time + Date_A_L_Origine + + + Original_Hour_Of_Time + Temps_A_L_Origine + + + Limit_Values + Valeurs_Limites + + + Tracers_Setting + Parametres_Des_Traceurs + + + Tracer + Traceur + + + Boundary_Conditions_For_Tracers + Conditions_Aux_Limites_Pour_Les_Traceurs + + + Solving + + + + Accuracy + + + + Source + Source + + + Metereology + Metereologie + + + Numerical + Numerique + + + Degradation + Degradation + + + + + Values_Of_Tracers_In_The_Rain + Valeurs_Des_Traceurs_Dans_La_Pluie + + + Threshold_Depth_For_Receding_Procedure + Profondeur_Limite_Pour_Procedure_De_Ressuyage + + + Title + Titre + + + Spatial_Projection_Type + Type_De_Projection_Spatiale + + + Stochastic_Diffusion_Model + Modele_De_Diffusion_Stochastique + + + Drogues_File + Fichier_Des_Flotteurs + + + Origin_Coordinates + Coordonnees_De_L'origine + + + Thickness_Of_Algae + Epaisseur_Des_Algues + + + Velocities_Of_The_Sources_Along_X + Vitesses_Des_Sources_Selon_X + + + Velocities_Of_The_Sources_Along_Y + Vitesses_Des_Sources_Selon_Y + + + Finite_Volume_Scheme + Schema_En_Volumes_Finis + + + Density_Of_Algae + Masse_Volumique_Des_Algues + + + Geometry_File + Fichier_De_Geometrie + + + Turbulence_Model + Modele_De_Turbulence + + + Oil_Spill_Model + Modele_De_Nappes_D'hydrocarbures + + + Definition_Of_Zones + Definition_De_Zones + + + Rain_Or_Evaporation + Pluie_Ou_Evaporation + + + Sources_File + Fichier_Des_Sources + + + Friction_Coefficient + Coefficient_De_Frottement + + + Wind + Vent + + + Option_For_Tidal_Boundary_Conditions + Option_Pour_Les_Conditions_Aux_Limites_De_Maree + + + Coefficient_To_Calibrate_Tidal_Velocities + Coefficient_De_Calage_Des_Vitesses_De_Courant + + + Initial_Time_Set_To_Zero + Remise_A_Zero_Du_Temps + + + Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers + Maximum_D'iterations_Pour_La_Diffusion_Des_Traceurs + + + Binary_Results_File + Fichier_De_Resultats_Binaire + + + Number_Of_Drogues + Nombre_De_Flotteurs + + + Air_Pressure + Pression_Atmospherique + + + Mean_Depth_For_Linearization + Profondeur_Moyenne_Pour_La_Linearisation + + + Control_Of_Limits + Controle_Des_Limites + + + Free_Surface_Gradient_Compatibility + Compatibilite_Du_Gradient_De_Surface_Libre + + + Prescribed_Tracers_Values + Valeurs_Imposees_Des_Traceurs + + + defaut + Saint-venant_Ef + + + Velocity_Diffusivity + Coefficient_De_Diffusion_Des_Vitesses + + + Time_Step + Pas_De_Temps + + + Validation + Validation + + + Roughness_Coefficient_Of_Boundaries + Coefficient_De_Rugosite_Des_Bords + + + Density_Effects + Effets_De_Densite + + + Implicitation_Coefficient_Of_Tracers + Coefficient_D'implicitation_Des_Traceurs + + + Formatted_Results_File + Fichier_De_Resultats_Formate + + + Debugger + Debugger + + + Liquid_Boundaries_File + Fichier_Des_Frontieres_Liquides + + + Sections_Output_File + Fichier_De_Sortie_Des_Sections_De_Controle + + + Number_Of_Private_Arrays + Nombre_De_Tableaux_Prives + + + Coefficient_Of_Wind_Influence + Coefficient_D'influence_Du_Vent + + + Depth_In_Friction_Terms + Hauteur_Dans_Les_Termes_De_Frottement + + + Coefficient_To_Calibrate_Sea_Level + Coefficient_De_Calage_Du_Niveau_De_Mer + + + Variables_To_Be_Printed + Variables_A_Imprimer + + + Preconditioning + Preconditionnement + + + Cost_Function + Fonction_Cout + + + Type_Of_Sources + Type_Des_Sources + + + Tidal_Flats + Bancs_Decouvrants + + + Ascii_Database_For_Tide + Base_Ascii_De_Donnees_De_Maree + + + Original_Date_Of_Time + Date_De_L'origine_Des_Temps + + + Mean_Temperature + Temperature_Moyenne + + + Initial_Elevation + Cote_Initiale + + + Tubes_Data_File + Fichier_De_Donnees_Des_Buses + + + Boundary_Conditions_File + Fichier_Des_Conditions_Aux_Limites + + + Breach + Breche + + + Treatment_Of_The_Linear_System + Traitement_Du_Systeme_Lineaire + + + Prescribed_Elevations + Cotes_Imposees + + + List_Of_Points + Liste_De_Points + + + Listing_Printout_Period + Periode_De_Sortie_Listing + + + Initial_Guess_For_H + Ordre_Du_Tir_Initial_Pour_H + + + Geometry_File_Format + Format_Du_Fichier_De_Geometrie + + + Coefficient_1_For_Law_Of_Tracers_Degradation + Coefficient_1_De_La_Loi_De_Degradation_Des_Traceurs + + + Number_Of_Lagrangian_Drifts + Nombre_De_Derives_Lagrangiennes + + + Weirs_Data_File + Fichier_De_Donnees_Des_Seuils + + + Rain_Or_Evaporation_In_Mm_Per_Day + Pluie_Ou_Evaporation_En_Mm_Par_Jour + + + Minor_Constituents_Inference + Interpolation_De_Composantes_Mineures + + + Maximum_Number_Of_Friction_Domains + Nombre_Maximum_De_Domaines_De_Frottement + + + Elements_Masked_By_User + Elements_Masques_Par_L'utilisateur + + + Control_Sections + Sections_De_Controle + + + Number_Of_Time_Steps + Nombre_De_Pas_De_Temps + + + Solver_Accuracy + Precision_Du_Solveur + + + Wave_Driven_Currents + Courants_De_Houle + + + Number_Of_Culverts + Nombre_De_Siphons + + + Equations + Equations + + + Maximum_Number_Of_Iterations_For_Identification + Maximum_D'iterations_Pour_L'identification + + + Coefficient_For_Diffusion_Of_Tracers + Coefficient_De_Diffusion_Des_Traceurs + + + Option_For_The_Diffusion_Of_Velocities + Option_Pour_La_Diffusion_Des_Vitesses + + + Coefficient_To_Calibrate_Tidal_Range + Coefficient_De_Calage_Du_Marnage + + + Binary_Data_File_1 + Fichier_De_Donnees_Binaire_1 + + + Binary_Data_File_2 + Fichier_De_Donnees_Binaire_2 + + + Solver + Solveur + + + Implicitation_For_Velocity + Implicitation_Pour_La_Vitesse + + + Longitude_Of_Origin_Point + Longitude_Du_Point_Origine + + + Original_Hour_Of_Time + Heure_De_L'origine_Des_Temps + + + Law_Of_Friction_On_Lateral_Boundaries + Loi_De_Frottement_Sur_Les_Parois_Laterales + + + Propagation + Propagation + + + Solver_For_Diffusion_Of_Tracers + Solveur_Pour_La_Diffusion_Des_Traceurs + + + Discretizations_In_Space + Discretisations_En_Espace + + + Solver_Option + Option_Du_Solveur + + + Advection_Of_H + Convection_De_H + + + Output_Of_Initial_Conditions + Sortie_Des_Conditions_Initiales + + + Record_Number_For_Restart + Enregistrement_Pour_Suite_De_Calcul + + + Accuracy_For_Diffusion_Of_Tracers + Precision_Pour_La_Diffusion_Des_Traceurs + + + Initial_Guess_For_U + Ordre_Du_Tir_Initial_Pour_U + + + Advection_Of_K_And_Epsilon + Convection_De_K_Et_Epsilon + + + Identification_Method + Methode_D'identification + + + Names_Of_Points + Noms_Des_Points + + + Zone_Number_In_Geographic_System + Numero_De_Fuseau_Ou_Projection_Dans_Le_Systeme_Geographique + + + Matrix_Storage + Stockage_Des_Matrices + + + Algae_Type + Type_Des_Algues + + + Water_Density + Masse_Volumique_De_L'eau + + + Newmark_Time_Integration_Coefficient + Coefficient_D'integration_En_Temps_De_Newmark + + + Friction_Data_File + Fichier_De_Donnees_Pour_Le_Frottement + + + Implicitation_For_Diffusion_Of_Velocity + Implicitation_Pour_La_Diffusion_Des_Vitesses + + + Advection + Convection + + + Geographic_System + Systeme_Geographique + + + Results_File + Fichier_Des_Resultats + + + Algae_Transport_Model + Modele_De_Transport_Des_Algues + + + Treatment_Of_Negative_Depths + Traitement_Des_Hauteurs_Negatives + + + Ordinates_Of_Sources + Ordonnees_Des_Sources + + + Coriolis_Coefficient + Coefficient_De_Coriolis + + + Water_Discharge_Of_Sources + Debits_Des_Sources + + + Advection_Of_U_And_V + Convection_De_U_Et_V + + + Latitude_Of_Origin_Point + Latitude_Du_Point_Origine + + + Binary_Database_1_For_Tide + Base_Binaire_1_De_Donnees_De_Maree + + + Coriolis + Coriolis + + + Desired_Courant_Number + Nombre_De_Courant_Souhaite + + + Variables_For_Graphic_Printouts + Variables_Pour_Les_Sorties_Graphiques + + + Time_Range_For_Fourier_Analysis + Bornes_En_Temps_Pour_L'analyse_De_Fourier + + + Graphic_Printout_Period + Periode_Pour_Les_Sorties_Graphiques + + + Tide_Generating_Force + Force_Generatrice_De_La_Maree + + + Preconditioning_For_Diffusion_Of_Tracers + Preconditionnement_Pour_La_Diffusion_Des_Traceurs + + + Number_Of_Tubes + Nombre_De_Buses + + + Vertical_Structures + Structures_Verticales + + + Stop_If_A_Steady_State_Is_Reached + Arret_Si_Un_Etat_Permanent_Est_Atteint + + + Number_Of_Weirs + Nombre_De_Seuils + + + Listing_Printout + Sortie_Listing + + + Previous_Computation_File + Fichier_Du_Calcul_Precedent + + + Fortran_File + Fichier_Fortran + + + Sections_Input_File + Fichier_Des_Sections_De_Controle + + + Binary_Database_2_For_Tide + Base_Binaire_2_De_Donnees_De_Maree + + + Results_File_Format + Format_Du_Fichier_Des_Resultats + + + Accuracy_Of_K + Precision_Sur_K + + + Tidal_Model_File + Fichier_Du_Modele_De_Maree + + + Fourier_Analysis_Periods + Periodes_D'analyse_De_Fourier + + + H_Clipping + Clipping_De_H + + + Tolerances_For_Identification + Precisions_Pour_L'identification + + + Previous_Computation_File_Format + Format_Du_Fichier_Du_Calcul_Precedent + + + Prescribed_Flowrates + Debits_Imposes + + + Bottom_Topography_File + Fichier_Des_Fonds + + + Implicitation_For_Depth + Implicitation_Pour_La_Hauteur + + + Reference_File_Format + Format_Du_Fichier_De_Reference + + + Diffusion_Of_Tracers + Diffusion_Des_Traceurs + + + Formatted_Data_File_1 + Fichier_De_Donnees_Formate_1 + + + Formatted_Data_File_2 + Fichier_De_Donnees_Formate_2 + + + Computation_Continued + Suite_De_Calcul + + + Breaches_Data_File + Fichier_De_Donnees_Des_Breches + + + Diffusion_Of_Velocity + Diffusion_Des_Vitesses + + + Type_Of_Advection + Forme_De_La_Convection + + + Solver_Option_For_Tracers_Diffusion + Option_Du_Solveur_Pour_La_Diffusion_Des_Traceurs + + + Advection_Of_Tracers + Convection_Des_Traceurs + + + Printout_Period_For_Drogues + Periode_Pour_Les_Sorties_De_Flotteurs + + + Option_For_The_Treatment_Of_Tidal_Flats + Option_De_Traitement_Des_Bancs_Decouvrants + + + Physical_Characteristics_Of_The_Tsunami + Parametres_Physiques_Du_Tsunami + + + Maximum_Number_Of_Iterations_For_K_And_Epsilon + Maximum_D'iterations_Pour_K_Et_Epsilon + + + Tidal_Data_Base + Base_De_Donnees_De_Maree + + + Maximum_Number_Of_Iterations_For_Solver + Maximum_D_iterations_Pour_Le_Solveur + + + Number_Of_Tracers + Nombre_De_Traceurs + + + Threshold_Depth_For_Wind + Profondeur_Limite_Pour_Le_Vent + + + Gravity_Acceleration + Acceleration_De_La_Pesanteur + + + Option_For_Characteristics + Option_Pour_Les_Caracteristiques + + + Spacing_Of_Roughness_Elements + Espacement_Des_Elements_De_Frottement + + + Parallel_Processors + Processeurs_Paralleles + + + Harmonic_Constants_File + Fichier_Des_Constantes_Harmoniques + + + Spherical_Coordinates + Coordonnees_Spheriques + + + Parameter_Estimation + Estimation_De_Parametre + + + Linearized_Propagation + Propagation_Linearisee + + + Accuracy_Of_Epsilon + Precision_Sur_Epsilon + + + Diameter_Of_Roughness_Elements + Diametre_Des_Elements_De_Frottement + + + Number_Of_First_Time_Step_For_Graphic_Printouts + Numero_Du_Premier_Pas_De_Temps_Pour_Les_Sorties_Graphiques + + + Threshold_For_Negative_Depths + Seuil_Pour_Les_Profondeurs_Negatives + + + Wind_Velocity_Along_X + Vitesse_Du_Vent_Suivant_X + + + Wind_Velocity_Along_Y + Vitesse_Du_Vent_Suivant_Y + + + Information_About_Solver + Informations_Sur_Le_Solveur + + + Initial_Conditions + Conditions_Initiales + + + Culvert_Data_File + Fichier_De_Donnees_Des_Siphons + + + Maximum_Number_Of_Iterations_For_Advection_Schemes + Maximum_D'iterations_Pour_Les_Schemas_De_Convection + + + Turbulence_Model_For_Solid_Boundaries + Regime_De_Turbulence_Pour_Les_Parois + + + Continuity_Correction + Correction_De_Continuite + + + Law_Of_Bottom_Friction + Loi_De_Frottement_Sur_Le_Fond + + + Option_For_Tsunami_Generation + Option_Pour_La_Generation_De_Tsunami + + + Type_Of_Weirs + Type_Des_Seuils + + + Record_Number_In_Wave_File + Numero_De_L'enregistrement_Dans_Le_Fichier_De_Houle + + + Abscissae_Of_Sources + Abscisses_Des_Sources + + + Values_Of_The_Tracers_At_The_Sources + Valeurs_Des_Traceurs_Des_Sources + + + Treatment_Of_Fluxes_At_The_Boundaries + Traitement_Des_Flux_Aux_Frontieres + + + Printing_Cumulated_Flowrates + Impression_Du_Cumul_Des_Flux + + + Compatible_Computation_Of_Fluxes + Calcul_Compatible_Des_Flux + + + Bottom_Smoothings + Lissages_Du_Fond + + + Initial_Depth + Hauteur_Initiale + + + Minimum_Value_Of_Depth + Valeur_Minimum_De_H + + + Option_For_The_Diffusion_Of_Tracers + Option_Pour_La_Diffusion_Des_Traceurs + + + Duration + Duree_Du_Calcul + + + Stop_Criteria + Criteres_D'arret + + + Prescribed_Velocities + Vitesses_Imposees + + + Initial_Values_Of_Tracers + Valeurs_Initiales_Des_Traceurs + + + Reference_File + Fichier_De_Reference + + + + lecture du fichier impossible : + unable to read file + + + + Impossible d'ouvrir le fichier %s + unable to read file + + + + Format de sortie : %s, non supporte + + + + + Impossible d'ouvrir le fichier : %s + + + + + Erreur a l'evaluation : + %s + + + + + Erreur ! Erreur ! + + + + + Erreur rencontree dans recherche_enfants : %s + + + + + Erreur dans la creation du mot-cle : %s + + + + + Impossible d'ouvrir le fichier : %s + + + + + le texte a analyser n'est pas celui d'une commande ou d'un operateur : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + %d n'est pas un index valide pour append_brother + + + + + le fichier de commandes %s n'existe pas + + + + + un fichier de commandes doit etre defini avant une poursuite %s + + + + + le fichier poursuite %s n'existe pas + + + + + include mal defini %s + + + + + un fichier de commandes doit etre defini avant un include %s + + + + + le fichier include %s n'existe pas + + + + + le fichier jdc %s n'existe pas + + + + + jdc %s manque option jdc dans section jdc + + + + + %(v_1)s include %(v_2)s : %(v_3)s + v_1 + + + + + %(v_1)s fichier poursuite: %(v_2)s + v_1 + + + + + nom etude : %s + + + + + utilisation : %prog [options] + + + + + nom du fichier de commandes + + + + + nom du fichier poursuite + + + + + numero d'unite suivi du nom du fichier include + + + + + fichier decrivant une etude + + + + + version de catalogue a utiliser + + + + + nom du code a utiliser + + + + + niveau de debug + + + + + schema + + + + + localisation de l'application, pour la traduction + + + + + Nombre incorrect d'arguments + + + + + Localisation specifiee pour l'application. + + + + + Un fichier de nom %s existe deja : impossible de creer un repertoire de meme nom + + + + + Creation du repertoire %s impossible + Verifiez vos droits d'acces + + + + + Impossible de transferer les fichiers requis dans : %s + + + + + Erreur + + + + + Erreurs fatales + + + + + Impossible reconstruire commande + + + + + + Objet commentaire non valorise + + + + + Debut Fonction %s + + + + + Fin Fonction %s + + + + + Nom de concept deja defini : %s + + + + + Longueur incorrecte + + + + + L'attribut 'min' doit etre un entier : + + + + + L'attribut 'max' doit etre un entier : + + + + + Nombres d'occurrence min et max invalides : + + + + + L'attribut 'fr' doit etre une chaine de caracteres + + + + + L'attribut 'statut' doit valoir 'o','f','c' ou 'd' + + + + + L'attribut 'docu' doit etre une chaine de caracteres + + + + + Fin + + + + + Le parametre EVAL %s ne peut valoir None + + + + + Le parametre EVAL ne peut valoir None + + + + + Pas de nom donne au parametre EVAL + + + + + Un nom de parametre ne peut depasser 8 caracteres + + + + + ERREUR + + + + + Format pas implemente : %s + + + + + Type d'objet non prevu : %s + + + + + ce groupe de maillage %s est associe a au moins un materiau et au moins une source. + + + + + ce groupe de maillage %s n'est associe a aucun materiau ou source. + + + + + ATTENTION! Une source constante n'est possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe valable + + + + + ERREUR! ce type de bloc (%s) n'est pas valable + + + + + toutes les donnees ne sont pas connues + + + + + Fichier patron %s n'existe pas. + + + + + Pas supporte + + + + + Entite inconnue ou interdite :%s + + + + + Entite inconnue ou interdite :%s. Elle est ignoree + + + + + Les tuples ne sont pas supportes pour le format ini :%s + + + + + Type de valeur non supportee par le format ini :%(nom)s +%(exception)s + nom + + + + + Il y a un pb a la Creation du XML + + + + + Il y a un pb a la Creation du STD + + + + + Entite inconnue ou interdite : %s. Elle est ignoree + + + + + Type de valeur non supporte par le format pyth : n %(exception)s + nom + + + + + Tag %s non-defini. Ceci est un bogue interne. en informer les developpeurs. + + + + + Le mot-cle %s est obligatoire. + + + + + concept %(inst_name)s de type %(class_name)s + inst_name + + + + + Un nom de concept doit etre un identificateur Python + + + + + Concept existant + + + + + Operateur reentrant mais concept non existant + + + + + Operateur reentrant et concept existant trouve + + + + + Concept deja existant et de mauvais type + + + + + Nommage du concept refuse : un concept de meme nom existe deja + + + + + Nommage du concept effectue + + + + + Nommage impossible %s + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese ouvrante manquante + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese fermante manquante + + + + + Pas de nom donne a la FORMULE + + + + + Un nom de FORMULE ne peut depasser 8 caracteres + + + + + Un nom de FORMULE ne peut pas commencer par un chiffre + + + + + Le type de la valeur retournee n'est pas specifie + + + + + Une formule ne peut retourner une valeur de type : %s + + + + + Impossible d'ajouter la commande + + + + + Impossible d ajouter la commande + + + + + Pas implemente + + + + + Nom de concept deja defini + + + + + Nom de concept deja defini : + + + + + Impossible de trouver le fichier correspondant a l'unite + + + + + n'est pas un fichier existant + + + + + Fichier invalide %s + + + + + Impossible de construire le jeu de commandes correspondant au fichier + + + + + Erreur lors de l'evaluation du fichier inclus + + + + + Ce fichier ne sera pas pris en compte + %s + + + + + Ce fichier ne sera pas pris en compte +Le fichier associe n'est pas defini + + + + + Le fichier n est pas defini + + + + + le fichier doit contenir une unique variable de sortie + + + + + Fichier invalide + + + + + Le contenu de ce fichier ne sera pas pris en compte + %s + + + + + Le fichier INCLUDE n est pas defini + + + + + Le contenu de ce fichier ne sera pas pris en compte + + + + + + Erreur lors de l'evaluation du fichier poursuite + + + + + L'objet %(v_1)s ne peut etre un fils de %(v_2)s + v_1 + + + + + L'objet %s ne peut pas etre repete + + + + + Erreur - mclist inexistante : %s + + + + + Erreur - mot cle facteur de nom : %s + + + + + traitement non-prevu + + + + + L'objet %s ne peut pas etre ajoute + + + + + None n'est pas une valeur autorisee + + + + + un concept de meme nom existe deja + + + + + Concept cree + + + + + La matrice n'est pas une matrice %(n_lign)d sur %(n_col)d + n_lign + + + + + Impossible de relire le fichier %s + + + + + + Le fichier include contient des erreurs + + + + + n'est pas un index valide pour append_brother + + + + + Decommenter + + + + + Decommente la commande + + + + + Impossible de supprimer un mot-cle obligatoire + + + + + Mot-cle %s supprime + + + + + Pb interne : impossible de supprimer ce mot-cle + + + + + Commentaire supprime + + + + + Commande %s supprimee + + + + + Pb interne : impossible de supprimer cet objet + + + + + Le fichier de commande n'a pas pu etre converti pour etre editable par Eficas + + + + + + + Include vide + + + + + L'include doit etre correctement initialise pour etre visualise + + + + + Impossible de supprimer ce mot-clef + + + + + View3D + + + + + affiche dans Geom les elements de structure + + + + + Graphique + + + + + affiche la distribution + + + + + Erreur interne + + + + + La PDF de la loi ne peut pas etre affichee. + + + + + &Annuler + + + + + Impossible de supprimer un mot-clef obligatoire + + + + + Mot-clef %s supprime + + + + + Pb interne : impossible de supprimer ce mot-clef + + + + + Definition d'un parametre + + + + + Import du fichier de Configuration + + + + + Erreur a la lecture du fichier de configuration %s + + + + + Erreur fatale au chargement de %s + + + + + Erreur fatale au chargement d'un fichier + + + + + fichier modifie + + + + + Attention! fichier change hors EFICAS + + + + + Type de fichier non reconnu + + + + + EFICAS ne sait pas ouvrir le type de fichier %s + + + + + EFICAS ne sait pas ouvrir ce type de fichier + + + + + Copie impossible + + + + + Veuillez selectionner un objet a copier + + + + + Veuillez selectionner un seul objet : la copie se fera apres le noeud selectionne + + + + + Aucun Objet n a ete copie ou coupe + + + + + Copie refusee + + + + + Eficas n a pas reussi a copier l objet + + + + + Copie refusee pour ce type d objet + + + + + Deplacement refuse + + + + + Deplacement refuse entre 2 fichiers. Seule la copie est autorisee + + + + + Copie impossible a cet endroit + + + + + Veuillez selectionner une commande, un parametre, un commentaire ou une macro + + + + + Choix d'un fichier XML + + + + + Le fichier contient une commande MODEL + + + + + + Donnez le nom du fichier XML qui contient la description des variables + + + + + Ouvrir Fichier + + + + + Erreur a la generation + + + + + EFICAS ne sait pas convertir ce JDC + + + + + Format %s non reconnu + + + + + EFICAS ne sait pas convertir le JDC selon le format + + + + + Execution impossible + + + + + le JDC doit etre valide pour une execution MAP + + + + + le JDC doit contenir un et un seul composant + + + + + le JDC doit etre valide pour une execution + + + + + Sauvegarder SVP avant l'execution + + + + + sauvegarde + + + + + Sauvegarde du Fichier + + + + + Le fichier <b>%s</b> existe deja. + + + + + &Ecraser + + + + + Sauvegarde de l'input impossible + + + + + Un JdC valide est necessaire pour creer un .input + + + + + Choix du composant obligatoire + + + + + Choix unite %d + + + + + Le fichier %s contient une commande INCLUDE + + + + + + Donnez le nom du fichier correspondant a l unite logique + + + + + Fichier pour unite + + + + + Choix d'un fichier de poursuite + + + + + Le fichier %s contient une commande POURSUITE + + + + + + Donnez le nom du fichier dont vous + voulez faire une poursuite + + + + + Fichiers Med (*.med);;Tous les Fichiers (*) + + + + + Fichier Med + + + + + Veuillez selectionner un fichier Med + + + + + reel + + + + + entier + + + + + complexe + + + + + Entrez + + + + + Entrez entre + + + + + et + + + + + Type de base inconnu + + + + + Aide Indisponible + + + + + l'aide n est pas installee + + + + + Visualisation Fichier + + + + + Impossibilite d'afficher le Fichier + + + + + Sauvegarder Fichier + + + + + Fichier selectionne + + + + + Selection + + + + + Export Med vers Fichier + + + + + Impossibilite d exporter le Fichier + + + + + Traduire Fichier + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + Fichier Traduit : %s + + + + + + + Pas de difference entre le fichier origine et le fichier traduit + + + + + objet valide + + + + + %d versions du catalogue sont disponibles + + + + + Sauvegarder le fichier + + + + + Le fichier <b>%(v_1)s</b> n'a pu etre sauvegarde. <br>Raison : %(v_2)s + v_1 + + + + + Options pour + + + + + + valeurs + + + + + Nombre minimal de valeurs : + + + + + Nombre maximal de valeurs : + + + + + expression valide + + + + + expression invalide + + + + + l expression n est pas de la forme a+bj + + + + + expression n est pas de la forme a+bj + + + + + entrer une seule valeur SVP + + + + + saisir le type de complexe + + + + + Valeur du mot-cle enregistree + + + + + Valeur du mot-cle non autorisee + + + + + &Recents + + + + + Aide specifique + + + + + Options + + + + + Traduction + + + + + TraduitV7V8 + + + + + TraduitV8V9 + + + + + TraduitV9V10 + + + + + Acquiert Groupe Maille + + + + + Specificites Maille + + + + + version + + + + + pour + + + + + Parametrage + + + + + Veuillez d abord choisir un code + + + + + Pas de possibilite de personnalisation de la configuration + + + + + &Effacer + + + + + Veuillez entrer le complexe sous forme aster ou sous forme python + + + + + Import du catalogue + + + + + Pas de catalogue defini pour le code + + + + + Aucun catalogue trouve + + + + + Impossible d'importer le catalogue + + + + + avec le catalogue + + + + + Choix d une version du code + + + + + Choix d une version + + + + + Parametre + + + + + Insere un parametre + + + + + item invalide + + + + + l item doit etre valide + + + + + &Ok + &Ok + + + + apres + + + + + Insere un commentaire apres la commande + + + + + avant + + + + + Insere un commentaire avant la commande + + + + + Insere un parametre apres la commande + + + + + Insere un parametre avant la commande + + + + + Supprimer + + + + + supprime le mot clef + + + + + Documentation + + + + + documentation sur la commande + + + + + Documentation Vide + + + + + Aucune documentation n'est associee a ce noeud + + + + + impossible de trouver la commande + + + + + Lecteur PDF + + + + + impossible d'ouvrir + + + + + Commentaire + + + + + ce noeud + + + + + commente le noeud + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + &Quitter + + + + + Quitter + + + + + Fichier Duplique + + + + + Le fichier ne sera pas sauvegarde. + + + + + Fichier + + + + + Le fichier <b>%s</b> est deja ouvert. + + + + + &Duplication + + + + + &Abort + + + + + Fichier Modifie + + + + + Le fichier %s n a pas ete sauvegarde. + + + + + &Sauvegarder + + + + + SOURCE + + + + + EnveloppeConnexeInducteur + + + + + EnveloppeConnexe2 + + + + + VecteurDirecteur + + + + + Centre + + + + + SectionBobine + + + + + Amplitude + + + + + NbdeTours + + + + + CONDUCTEUR + + + + + Conductivite + + + + + PermeabiliteRelative + + + + + NOCOND + + + + + VCUT + + + + + Orientation + + + + + ZS + + + + + PARAMETRES + + + + + RepCarmel + + + + + TypedeFormule + + + + + Frequence + + + + + Nb_Max_Iterations + + + + + Erreur_Max + + + + + PARAMETRE + + + + + Valeur non modifiable + + + + + Format non implemente + + + + + Type d'objet non prevu + + + + + Select + + + + + Sauve Format Ligne + + + + + %s n'est pas un fichier valide + + + + + Fichier de donnees + + + + + Tous les Fichiers (*) + + + + + nb min de valeurs : + + + + + nb max de valeurs atteint + + + + + TraduitV10V11 + + + + + TraduitV11V12 + + + + + Valeur du mot-clef enregistree + + + + + Valeur du mot-clef non autorisee : + + + + + Un concept de nom %s existe déjà ! + + + + + La cardinalite n'est pas correcte, la derniere valeur est ignoree + + + + + n est pas un tuple de + + + + + valeurs + + + + + Valeur incorrecte + + + + + n est pas un identifiant correct + + + + + + Entrer un float SVP + + + + + Entrer un float inferieur a + + + + + Entrer un float superieur a + + + + + Mauvaise execution + + + + + impossible d executer la methode + + + + + Mauvaise Commande + + + + + Aucune variable connue + + + + + Mauvaise dimension de matrice + + + + + le nombre de ligne n est pas egal a + + + + + le nombre de colonne n est pas egal a + + + + + Mauvaise Valeur + + + + + l element + + + + + n est pas correct + + + + + Modification Impossible + + + + + le parametre n'est pas valide + + + + + n est pas un identifiant correct + + + + + Valeur incorrecte: + + + + + Valeur incorrecte + + + + + Valeur correcte + + + + + impossible d'evaluer : + + + + + La formule passee a l'interpreteur doit etre sous forme de tuple + + + + + Debut + + + + + Pas de nom donne au parametre + + + + + Le parametre %s ne peut valoir None + + + + + Format non implemente : %s + + + + + Impossible de realiser la verification de la formule + + + + + Un concept de nom %s existe deja ! + + + + + existe deja + + + + + + Fichier non encore nomme + + + + + La matrice n'a pas le bon entete + + + + + le mot clef + + + + + doit etre insere avant + + + + + insertion impossible + + + + + doit etre insere apres + + + + + Nb maximum de valeurs atteint + + + + + pas de regle de construction pour ce jeu de commandes + + + + + Gestion Maillage + + + + + Acquiert groupe mailles + + + + + Acquisition Groupe Maille + + + + + VERSION + + + + + NUM + + + + + FILETYPE + + + + + PARAMETERS + + + + + Fichier_maillage + + + + + Echelle_du_maillage + + + + + Formulation + + + + + Timeproblem + + + + + spectral + + + + + Basis + + + + + Fourier + + + + + Ordre + + + + + FREQUENCY + + + + + minimisation + + + + + no + + + + + yes + + + + + nb_procs_para + + + + + POLYMER + + + + + MODEL_DATABASE + + + + + Stabilise + + + + + Non Stabilise + + + + + Local + + + + + ESSAI_OPTION + + + + + MATERIEL + + + + + Cable + + + + + Peinture + + + + + Tuyauterie + + + + + Materiau_De_Cable + + + + + PE + + + + + EPDM + + + + + Modele + + + + + Impossible de convertir le fichier Python qui doit contenir des erreurs. + + On retourne le fichier non converti. Prevenir la maintenance. + + %s + + + + + Eficas ne peut pas traiter plusieurs instructions + sur la meme ligne : %s + + + + + le texte a analyser n'est pas celui d'une commande ou + d'un operateur : %s + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + jdc %(v_1)s manque + fichier comm dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier + de commandes %(v_2)s n'existe pas + v_1 + + + + + jdc %(v_1)s + fichier include %(v_2)s, %(v_3)s + n'existe pas + v_1 + + + + + jdc %(v_1)s manque fichier comm + dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier de commandes + %(v_2)s n'existe pas + v_1 + + + + + Objet commande commentarisé invalide + + + + + ATTENTION! Une source constante + n'est possible qu'a frequence nulle + en regime frequentiel + + + + + ERREUR! Une forme de la source du + type WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ATTENTION! Une source constante n'est + possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! Une forme de la source du type + WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe + indiquant le type de materiau ou de source associee + + + + + ERREUR! ce groupe de maille (%(nom)s) n'a pas + le prefixe correct pour etre associe a un type %(type_bloc)s + nom + + + + + + Include Invalide. + ne sera pas pris en compte + + + + + : verifie les types dans un tuple + + + + + Les types entres ne sont pas permis + + + + + ChoixCode + + + Choix du code + + + + + Veuillez choisir un code : + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + ChoixCommandes + + + DMacro + + + + + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Affichage</span></p></body></html> + + + + + affiche les commandes par ordre alphabetique + + + + + Alphabetique + + + + + affiche les commandes selon les thèmes + + + + + Ordre de la modélisation + + + + + Par Groupe + + + + + <html><head/><body><p align="center">Filtre Commande</p></body></html> + + + + + filter commands + + + + + affiche les régles de validité + + + + + ... + + + + + Règles de construction + + + + + Sensible à la casse + + + + + Effacer + + + + + selectionne les mots qui CONTIENNENT l expression + + + + + ré-affiche toutes les commandes + + + + + DChoixCata + + + Choix d'une version du code Aster + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 versions sont disponibles</span></p></body></html> + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + DSelVal + + + Sélection de valeurs + + + + + Separateur + + + + + espace + + + + + virgule + + + + + point-virgule + + + + + Ajouter Selection + + + + + Importer Tout + + + + + DVisu + + + Visualisation Include Materiau + + + + + Eficas + + + MainWindow + + + + + &Fichier + + + + + &Aide + + + + + toolBar + + + + + &Nouveau + + + + + Ctrl+N + + + + + Nouvel Include + + + + + &Ouvrir + + + + + Ctrl+O + + + + + Enregistrer + + + + + Enregistrer sous + + + + + Fermer + + + + + Ctrl+W + + + + + Fermer tout + + + + + Couper + + + + + Ctrl+X + + + + + Copier + + + + + Ctrl+C + + + + + Coller + + + + + Ctrl+V + + + + + Quitter + + + + + Ctrl+Q + + + + + Rapport de Validation + + + + + Fichier Source + + + + + Fichier Résultat + + + + + Parametres Eficas + + + + + Lecteur documentation + + + + + Eficas + + + + + Version + + + + + Supprimer + + + + + Rechercher + + + + + Rechercher dans l'arbre d'etude + + + + + Ctrl+F + + + + + Replier/Deplier + + + + + Tab 1 + + + + + &Edition + + + + + &JeuDeDonnées + + + + + Shift+I + + + + + Ctrl+S + + + + + Ctrl+Shift+S + + + + + Shift+V + + + + + Chercher Mot-Clef + + + + + Rechercher dans le catalogue + + + + + Shift+F + + + + + Shift+D + + + + + Commentaire + + + + + Shift+C + + + + + Paramètres + + + + + Gestion des paramètres + + + + + Shift+P + + + + + Parametre Eficas + + + + + Execution + + + + + Execution + + + + + Save Run + + + + + Patrons + + + + + Run + + + + + &bad + + + + + Régles du JdC + + + + + JDCEditor + + + Save File + + + + + The file <b>%1</b> could not be saved.<br>Reason: %2 + + + + + JDC (*.comm);;All Files (*) + + + + + &Abandonner + &Abandonner + + + + Tuple2 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Tuple3 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Widget4a6RadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetBloc + + + Form + + + + + WidgetCB + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetCommande + + + DCommandeUnique + + + + + Affiche le rapport de validité de la commande + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + + + Lance un script associé à la commande + + + + + ouvre un navigateur sur l'aide contextuelle + + + + + affiche les régles de validité + + + + + Détruit la commande + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + TextLabel + + + + + WidgetCommentaire + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">Commentaire</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + WidgetDate + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetFact + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" font-style:italic;">TextLabel</span></p></body></html> + + + + + WidgetFactPlie + + + Form + + + + + ... + + + + + TextLabel + + + + + WidgetHeure + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetInformative + + + Form + + + + + WidgetOptionnel + + + WidgetOptionnel + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + WidgetParam + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#000000;">Paramètre</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + Verifie la valeur + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetPlusieursBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Sélectionne depuis Salome + + + + + Visualise dans Salome + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + TextLabel + + + + + WidgetPlusieursInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursIntoOrdonne + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + TextLabel + + + + + Remonte d'une ligne + + + + + Descend d'une ligne + + + + + Détruit une ligne + + + + + ajoute une ligne + + + + + visualise l'ensemble des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursPlie + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + + + + + Détruit le mot-clef + + + + + WidgetPlusieursTuple + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + TextLabel + + + + + WidgetRadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetSDCOInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p>Structures de données du type requis </p><p><br/></p></body></html> + + + + + <html><head/><body><p>ou Nom du concept</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBool + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + True + + + + + False + + + + + Détruit le mot-clef + + + + + WidgetSimpComplexe + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Complexe : a+bj + + + + + <html><head/><body><p align="center">OU </p></body></html> + + + + + Réel/Imaginaire + + + + + Module/Phase + + + + + WidgetSimpFichier + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + affiche l'explorateur de fichier + + + + + ouvre le fichier choisi + + + + + Détruit le mot-clef + + + + + WidgetSimpTxt + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple2 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple3 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetUniqueSDCO + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Attend un objet de type CO + + + + + Détruit le mot-clef + + + + + WidgetVide + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0055ff;">Label</span></p></body></html> + + + + + Attend un objet de type XXXX. Il faut le créer + + + + + baseWidget + + + DMacro + + + + + dView + + + Dialog + + + + + Fermer + + + + + Sauver + + + + + desRecherche + + + Rechercher dans le JDC + + + + + Next + + + + + Suivant + + + + + desWidgetCreeParam + + + Gestion des Paramètres + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p><span style=" text-decoration: underline;">Créer un paramètre</span></p></body></html> + + + + + desWidgetMatrice + + + Dialog + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>Met à jour l'en-tête</p></body></html> + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + self.appliEficas + + + Wrapper Files (*.xml);;All Files (*) + + + + + Noname + + + + + viewRegles + + + Dialog + + + + diff --git a/UiQT5/eficas_fr_sauve_ssInto.ts b/UiQT5/eficas_fr_sauve_ssInto.ts new file mode 100644 index 00000000..b0280d2d --- /dev/null +++ b/UiQT5/eficas_fr_sauve_ssInto.ts @@ -0,0 +1,4979 @@ + + + + @default + + Mass_Lumping_On_H + Mass_Lumping_Sur_H + + + Mass_Lumping_On_Velocity + Mass_Lumping_Sur_La_Vitesse + + + Mass_Lumping_On_Tracers + Mass_Lumping_Sur_Les_Traceurs + + + Mass_Lumping_For_Weak_Characteristics + Mass_Lumping_Pour_Les_Caracteristiques_Faibles + + + INITIALIZATION + INITIALISATION + + + Input_Files + Fichiers_D_Entree + + + Formatted_And_Binary_Files + Fichiers_Formates_Et_Binaires + + + Initial_State + Etat_Initial + + + Coupling + Couplage + + + Mass_Balance + Bilan_De_Masse + + + BOUNDARY_CONDITIONS + CONDITIONS_AUX_LIMITES + + + NUMERICAL_PARAMETERS + PARAMETRES_NUMERIQUES + + + PHYSICAL_PARAMETERS + PARAMETRES_PHYSIQUES + + + OUTPUT_FILES + FICHIERS_DE_SORTIE + + + CONSTRUCTION_WORKS_MODELLING + MODELISATION_DES_OUVRAGES + + + GENERAL_PARAMETERS + PARAMETRES_GENERAUX + + + PARTICLE_TRANSPORT + TRANSPORT_DE_PARTICULE + + + Computation_Continued_Settings + Parametres_De_Continuation_Du_Calcul + + + Inputs_Outputs_For_Tide + Entrees_Sorties_Pour_La_Maree + + + Location + Localisation + + + Physical_Parameters + Parametres_Physiques + + + Liquid_Boundaries + Frontieres_Liquide + + + Solver_Definition + Definition_Du_Solver + + + Linearity + Linearite + + + Precondionning_Setting + Parametres_Preconditionnement + + + Matrix_Informations + Stockage_Des_Matrices + + + Advection + Advection + + + Propagation + Propagation + + + Diffusion + Diffusion + + + Discretization_Implicitation + Discretisation + + + Tidal + Maree + + + Various + Divers + + + Friction_Setting + Parametres_De_Friction + + + Meteorology + Meteorologie + + + Wave + Houle + + + Parameters_Estimation + Parametres_A_Estimer + + + Tolerances_For_Identification + Tolerances_Pour_L_Identification + + + Sources + Sources + + + Coriolis_Settings + Parametres_Pour_Coriolis + + + Various_For_Numerical + Divers_Parametres_Numeriques + + + Secondary_Currents_Settings + Parametres_Pour_Les_Courants_Secondaires + + + Tsunami + Tsunami + + + Graphic_And_Listing_Printouts + Sorties_Listing_Et_Graphiques + + + Controls + Controles + + + Fourier + Fourier + + + General_Location + Localisation_Generale + + + Time + Temps + + + Original_Date_Of_Time + Date_A_L_Origine + + + Original_Hour_Of_Time + Temps_A_L_Origine + + + Limit_Values + Valeurs_Limites + + + Tracers_Setting + Parametres_Des_Traceurs + + + Tracer + Traceur + + + Boundary_Conditions_For_Tracers + Conditions_Aux_Limites_Pour_Les_Traceurs + + + Solving + + + + Accuracy + + + + Source + Source + + + Metereology + Metereologie + + + Numerical + Numerique + + + Degradation + Degradation + + + + + Values_Of_Tracers_In_The_Rain + Valeurs_Des_Traceurs_Dans_La_Pluie + + + Threshold_Depth_For_Receding_Procedure + Profondeur_Limite_Pour_Procedure_De_Ressuyage + + + Title + Titre + + + Spatial_Projection_Type + Type_De_Projection_Spatiale + + + Stochastic_Diffusion_Model + Modele_De_Diffusion_Stochastique + + + Drogues_File + Fichier_Des_Flotteurs + + + Origin_Coordinates + Coordonnees_De_L_Origine + + + Thickness_Of_Algae + Epaisseur_Des_Algues + + + Velocities_Of_The_Sources_Along_X + Vitesses_Des_Sources_Selon_X + + + Velocities_Of_The_Sources_Along_Y + Vitesses_Des_Sources_Selon_Y + + + Finite_Volume_Scheme + Schema_En_Volumes_Finis + + + Density_Of_Algae + Masse_Volumique_Des_Algues + + + Geometry_File + Fichier_De_Geometrie + + + Turbulence_Model + Modele_De_Turbulence + + + Oil_Spill_Model + Modele_De_Nappes_D_Hydrocarbures + + + Definition_Of_Zones + Definition_De_Zones + + + Rain_Or_Evaporation + Pluie_Ou_Evaporation + + + Sources_File + Fichier_Des_Sources + + + Friction_Coefficient + Coefficient_De_Frottement + + + Wind + Vent + + + Option_For_Tidal_Boundary_Conditions + Option_Pour_Les_Conditions_Aux_Limites_De_Maree + + + Coefficient_To_Calibrate_Tidal_Velocities + Coefficient_De_Calage_Des_Vitesses_De_Courant + + + Initial_Time_Set_To_Zero + Remise_A_Zero_Du_Temps + + + Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers + Maximum_D_Iterations_Pour_La_Diffusion_Des_Traceurs + + + Binary_Results_File + Fichier_De_Resultats_Binaire + + + Number_Of_Drogues + Nombre_De_Flotteurs + + + Air_Pressure + Pression_Atmospherique + + + Mean_Depth_For_Linearization + Profondeur_Moyenne_Pour_La_Linearisation + + + Control_Of_Limits + Controle_Des_Limites + + + Free_Surface_Gradient_Compatibility + Compatibilite_Du_Gradient_De_Surface_Libre + + + Prescribed_Tracers_Values + Valeurs_Imposees_Des_Traceurs + + + defaut + Saint-venant_Ef + + + Velocity_Diffusivity + Coefficient_De_Diffusion_Des_Vitesses + + + Time_Step + Pas_De_Temps + + + Validation + Validation + + + Roughness_Coefficient_Of_Boundaries + Coefficient_De_Rugosite_Des_Bords + + + Density_Effects + Effets_De_Densite + + + Implicitation_Coefficient_Of_Tracers + Coefficient_D_Implicitation_Des_Traceurs + + + Formatted_Results_File + Fichier_De_Resultats_Formate + + + Debugger + Debugger + + + Liquid_Boundaries_File + Fichier_Des_Frontieres_Liquides + + + Sections_Output_File + Fichier_De_Sortie_Des_Sections_De_Controle + + + Number_Of_Private_Arrays + Nombre_De_Tableaux_Prives + + + Coefficient_Of_Wind_Influence + Coefficient_D_Influence_Du_Vent + + + Depth_In_Friction_Terms + Hauteur_Dans_Les_Termes_De_Frottement + + + Coefficient_To_Calibrate_Sea_Level + Coefficient_De_Calage_Du_Niveau_De_Mer + + + Variables_To_Be_Printed + Variables_A_Imprimer + + + Preconditioning + Preconditionnement + + + Cost_Function + Fonction_Cout + + + Type_Of_Sources + Type_Des_Sources + + + Tidal_Flats + Bancs_Decouvrants + + + Ascii_Database_For_Tide + Base_Ascii_De_Donnees_De_Maree + + + Original_Date_Of_Time + Date_De_L_origine_Des_Temps + + + Mean_Temperature + Temperature_Moyenne + + + Initial_Elevation + Cote_Initiale + + + Tubes_Data_File + Fichier_De_Donnees_Des_Buses + + + Boundary_Conditions_File + Fichier_Des_Conditions_Aux_Limites + + + Breach + Breche + + + Treatment_Of_The_Linear_System + Traitement_Du_Systeme_Lineaire + + + Prescribed_Elevations + Cotes_Imposees + + + List_Of_Points + Liste_De_Points + + + Listing_Printout_Period + Periode_De_Sortie_Listing + + + Initial_Guess_For_H + Ordre_Du_Tir_Initial_Pour_H + + + Geometry_File_Format + Format_Du_Fichier_De_Geometrie + + + Coefficient_1_For_Law_Of_Tracers_Degradation + Coefficient_1_De_La_Loi_De_Degradation_Des_Traceurs + + + Number_Of_Lagrangian_Drifts + Nombre_De_Derives_Lagrangiennes + + + Weirs_Data_File + Fichier_De_Donnees_Des_Seuils + + + Rain_Or_Evaporation_In_Mm_Per_Day + Pluie_Ou_Evaporation_En_Mm_Par_Jour + + + Minor_Constituents_Inference + Interpolation_De_Composantes_Mineures + + + Maximum_Number_Of_Friction_Domains + Nombre_Maximum_De_Domaines_De_Frottement + + + Elements_Masked_By_User + Elements_Masques_Par_L_Utilisateur + + + Control_Sections + Sections_De_Controle + + + Number_Of_Time_Steps + Nombre_De_Pas_De_Temps + + + Solver_Accuracy + Precision_Du_Solveur + + + Wave_Driven_Currents + Courants_De_Houle + + + Number_Of_Culverts + Nombre_De_Siphons + + + Equations + Equations + + + Maximum_Number_Of_Iterations_For_Identification + Maximum_D_Iterations_Pour_L_Identification + + + Coefficient_For_Diffusion_Of_Tracers + Coefficient_De_Diffusion_Des_Traceurs + + + Option_For_The_Diffusion_Of_Velocities + Option_Pour_La_Diffusion_Des_Vitesses + + + Coefficient_To_Calibrate_Tidal_Range + Coefficient_De_Calage_Du_Marnage + + + Binary_Data_File_1 + Fichier_De_Donnees_Binaire_1 + + + Binary_Data_File_2 + Fichier_De_Donnees_Binaire_2 + + + Solver + Solveur + + + Implicitation_For_Velocity + Implicitation_Pour_La_Vitesse + + + Longitude_Of_Origin_Point + Longitude_Du_Point_Origine + + + Original_Hour_Of_Time + Heure_De_L_origine_Des_Temps + + + Law_Of_Friction_On_Lateral_Boundaries + Loi_De_Frottement_Sur_Les_Parois_Laterales + + + Propagation + Propagation + + + Solver_For_Diffusion_Of_Tracers + Solveur_Pour_La_Diffusion_Des_Traceurs + + + Discretizations_In_Space + Discretisations_En_Espace + + + Solver_Option + Option_Du_Solveur + + + Advection_Of_H + Convection_De_H + + + Output_Of_Initial_Conditions + Sortie_Des_Conditions_Initiales + + + Record_Number_For_Restart + Enregistrement_Pour_Suite_De_Calcul + + + Accuracy_For_Diffusion_Of_Tracers + Precision_Pour_La_Diffusion_Des_Traceurs + + + Initial_Guess_For_U + Ordre_Du_Tir_Initial_Pour_U + + + Advection_Of_K_And_Epsilon + Convection_De_K_Et_Epsilon + + + Identification_Method + Methode_D_Identification + + + Names_Of_Points + Noms_Des_Points + + + Zone_Number_In_Geographic_System + Numero_De_Fuseau_Ou_Projection_Dans_Le_Systeme_Geographique + + + Matrix_Storage + Stockage_Des_Matrices + + + Algae_Type + Type_Des_Algues + + + Water_Density + Masse_Volumique_De_L_Eau + + + Newmark_Time_Integration_Coefficient + Coefficient_D_Integration_En_Temps_De_Newmark + + + Friction_Data_File + Fichier_De_Donnees_Pour_Le_Frottement + + + Implicitation_For_Diffusion_Of_Velocity + Implicitation_Pour_La_Diffusion_Des_Vitesses + + + Advection + Convection + + + Geographic_System + Systeme_Geographique + + + Results_File + Fichier_Des_Resultats + + + Algae_Transport_Model + Modele_De_Transport_Des_Algues + + + Treatment_Of_Negative_Depths + Traitement_Des_Hauteurs_Negatives + + + Ordinates_Of_Sources + Ordonnees_Des_Sources + + + Coriolis_Coefficient + Coefficient_De_Coriolis + + + Water_Discharge_Of_Sources + Debits_Des_Sources + + + Advection_Of_U_And_V + Convection_De_U_Et_V + + + Latitude_Of_Origin_Point + Latitude_Du_Point_Origine + + + Binary_Database_1_For_Tide + Base_Binaire_1_De_Donnees_De_Maree + + + Coriolis + Coriolis + + + Desired_Courant_Number + Nombre_De_Courant_Souhaite + + + Variables_For_Graphic_Printouts + Variables_Pour_Les_Sorties_Graphiques + + + Time_Range_For_Fourier_Analysis + Bornes_En_Temps_Pour_L_Analyse_De_Fourier + + + Graphic_Printout_Period + Periode_Pour_Les_Sorties_Graphiques + + + Tide_Generating_Force + Force_Generatrice_De_La_Maree + + + Preconditioning_For_Diffusion_Of_Tracers + Preconditionnement_Pour_La_Diffusion_Des_Traceurs + + + Number_Of_Tubes + Nombre_De_Buses + + + Vertical_Structures + Structures_Verticales + + + Stop_If_A_Steady_State_Is_Reached + Arret_Si_Un_Etat_Permanent_Est_Atteint + + + Number_Of_Weirs + Nombre_De_Seuils + + + Listing_Printout + Sortie_Listing + + + Previous_Computation_File + Fichier_Du_Calcul_Precedent + + + Fortran_File + Fichier_Fortran + + + Sections_Input_File + Fichier_Des_Sections_De_Controle + + + Binary_Database_2_For_Tide + Base_Binaire_2_De_Donnees_De_Maree + + + Results_File_Format + Format_Du_Fichier_Des_Resultats + + + Accuracy_Of_K + Precision_Sur_K + + + Tidal_Model_File + Fichier_Du_Modele_De_Maree + + + Fourier_Analysis_Periods + Periodes_D_Analyse_De_Fourier + + + H_Clipping + Clipping_De_H + + + Tolerances_For_Identification + Precisions_Pour_L_Identification + + + Previous_Computation_File_Format + Format_Du_Fichier_Du_Calcul_Precedent + + + Prescribed_Flowrates + Debits_Imposes + + + Bottom_Topography_File + Fichier_Des_Fonds + + + Implicitation_For_Depth + Implicitation_Pour_La_Hauteur + + + Reference_File_Format + Format_Du_Fichier_De_Reference + + + Diffusion_Of_Tracers + Diffusion_Des_Traceurs + + + Formatted_Data_File_1 + Fichier_De_Donnees_Formate_1 + + + Formatted_Data_File_2 + Fichier_De_Donnees_Formate_2 + + + Computation_Continued + Suite_De_Calcul + + + Breaches_Data_File + Fichier_De_Donnees_Des_Breches + + + Diffusion_Of_Velocity + Diffusion_Des_Vitesses + + + Type_Of_Advection + Forme_De_La_Convection + + + Solver_Option_For_Tracers_Diffusion + Option_Du_Solveur_Pour_La_Diffusion_Des_Traceurs + + + Advection_Of_Tracers + Convection_Des_Traceurs + + + Printout_Period_For_Drogues + Periode_Pour_Les_Sorties_De_Flotteurs + + + Option_For_The_Treatment_Of_Tidal_Flats + Option_De_Traitement_Des_Bancs_Decouvrants + + + Physical_Characteristics_Of_The_Tsunami + Parametres_Physiques_Du_Tsunami + + + Maximum_Number_Of_Iterations_For_K_And_Epsilon + Maximum_D_Iterations_Pour_K_Et_Epsilon + + + Tidal_Data_Base + Base_De_Donnees_De_Maree + + + Maximum_Number_Of_Iterations_For_Solver + Maximum_D_Iterations_Pour_Le_Solveur + + + Number_Of_Tracers + Nombre_De_Traceurs + + + Threshold_Depth_For_Wind + Profondeur_Limite_Pour_Le_Vent + + + Gravity_Acceleration + Acceleration_De_La_Pesanteur + + + Option_For_Characteristics + Option_Pour_Les_Caracteristiques + + + Spacing_Of_Roughness_Elements + Espacement_Des_Elements_De_Frottement + + + Parallel_Processors + Processeurs_Paralleles + + + Harmonic_Constants_File + Fichier_Des_Constantes_Harmoniques + + + Spherical_Coordinates + Coordonnees_Spheriques + + + Parameter_Estimation + Estimation_De_Parametre + + + Linearized_Propagation + Propagation_Linearisee + + + Accuracy_Of_Epsilon + Precision_Sur_Epsilon + + + Diameter_Of_Roughness_Elements + Diametre_Des_Elements_De_Frottement + + + Number_Of_First_Time_Step_For_Graphic_Printouts + Numero_Du_Premier_Pas_De_Temps_Pour_Les_Sorties_Graphiques + + + Threshold_For_Negative_Depths + Seuil_Pour_Les_Profondeurs_Negatives + + + Wind_Velocity_Along_X + Vitesse_Du_Vent_Suivant_X + + + Wind_Velocity_Along_Y + Vitesse_Du_Vent_Suivant_Y + + + Information_About_Solver + Informations_Sur_Le_Solveur + + + Initial_Conditions + Conditions_Initiales + + + Culvert_Data_File + Fichier_De_Donnees_Des_Siphons + + + Maximum_Number_Of_Iterations_For_Advection_Schemes + Maximum_D_Iterations_Pour_Les_Schemas_De_Convection + + + Turbulence_Model_For_Solid_Boundaries + Regime_De_Turbulence_Pour_Les_Parois + + + Continuity_Correction + Correction_De_Continuite + + + Law_Of_Bottom_Friction + Loi_De_Frottement_Sur_Le_Fond + + + Option_For_Tsunami_Generation + Option_Pour_La_Generation_De_Tsunami + + + Type_Of_Weirs + Type_Des_Seuils + + + Record_Number_In_Wave_File + Numero_De_L_Enregistrement_Dans_Le_Fichier_De_Houle + + + Abscissae_Of_Sources + Abscisses_Des_Sources + + + Values_Of_The_Tracers_At_The_Sources + Valeurs_Des_Traceurs_Des_Sources + + + Treatment_Of_Fluxes_At_The_Boundaries + Traitement_Des_Flux_Aux_Frontieres + + + Printing_Cumulated_Flowrates + Impression_Du_Cumul_Des_Flux + + + Compatible_Computation_Of_Fluxes + Calcul_Compatible_Des_Flux + + + Bottom_Smoothings + Lissages_Du_Fond + + + Initial_Depth + Hauteur_Initiale + + + Minimum_Value_Of_Depth + Valeur_Minimum_De_H + + + Option_For_The_Diffusion_Of_Tracers + Option_Pour_La_Diffusion_Des_Traceurs + + + Duration + Duree_Du_Calcul + + + Stop_Criteria + Criteres_D_Arret + + + Prescribed_Velocities + Vitesses_Imposees + + + Initial_Values_Of_Tracers + Valeurs_Initiales_Des_Traceurs + + + Reference_File + Fichier_De_Reference + + + + lecture du fichier impossible : + unable to read file + + + + Impossible d'ouvrir le fichier %s + unable to read file + + + + Format de sortie : %s, non supporte + + + + + Impossible d'ouvrir le fichier : %s + + + + + Erreur a l'evaluation : + %s + + + + + Erreur ! Erreur ! + + + + + Erreur rencontree dans recherche_enfants : %s + + + + + Erreur dans la creation du mot-cle : %s + + + + + Impossible d'ouvrir le fichier : %s + + + + + le texte a analyser n'est pas celui d'une commande ou d'un operateur : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + Erreur dans la recherche du nom de la commande : + + + + + Erreur dans la recherche des args de la commande : + + + + + %d n'est pas un index valide pour append_brother + + + + + le fichier de commandes %s n'existe pas + + + + + un fichier de commandes doit etre defini avant une poursuite %s + + + + + le fichier poursuite %s n'existe pas + + + + + include mal defini %s + + + + + un fichier de commandes doit etre defini avant un include %s + + + + + le fichier include %s n'existe pas + + + + + le fichier jdc %s n'existe pas + + + + + jdc %s manque option jdc dans section jdc + + + + + %(v_1)s include %(v_2)s : %(v_3)s + v_1 + + + + + %(v_1)s fichier poursuite: %(v_2)s + v_1 + + + + + nom etude : %s + + + + + utilisation : %prog [options] + + + + + nom du fichier de commandes + + + + + nom du fichier poursuite + + + + + numero d'unite suivi du nom du fichier include + + + + + fichier decrivant une etude + + + + + version de catalogue a utiliser + + + + + nom du code a utiliser + + + + + niveau de debug + + + + + schema + + + + + localisation de l'application, pour la traduction + + + + + Nombre incorrect d'arguments + + + + + Localisation specifiee pour l'application. + + + + + Un fichier de nom %s existe deja : impossible de creer un repertoire de meme nom + + + + + Creation du repertoire %s impossible + Verifiez vos droits d'acces + + + + + Impossible de transferer les fichiers requis dans : %s + + + + + Erreur + + + + + Erreurs fatales + + + + + Impossible reconstruire commande + + + + + + Objet commentaire non valorise + + + + + Debut Fonction %s + + + + + Fin Fonction %s + + + + + Nom de concept deja defini : %s + + + + + Longueur incorrecte + + + + + L'attribut 'min' doit etre un entier : + + + + + L'attribut 'max' doit etre un entier : + + + + + Nombres d'occurrence min et max invalides : + + + + + L'attribut 'fr' doit etre une chaine de caracteres + + + + + L'attribut 'statut' doit valoir 'o','f','c' ou 'd' + + + + + L'attribut 'docu' doit etre une chaine de caracteres + + + + + Fin + + + + + Le parametre EVAL %s ne peut valoir None + + + + + Le parametre EVAL ne peut valoir None + + + + + Pas de nom donne au parametre EVAL + + + + + Un nom de parametre ne peut depasser 8 caracteres + + + + + ERREUR + + + + + Format pas implemente : %s + + + + + Type d'objet non prevu : %s + + + + + ce groupe de maillage %s est associe a au moins un materiau et au moins une source. + + + + + ce groupe de maillage %s n'est associe a aucun materiau ou source. + + + + + ATTENTION! Une source constante n'est possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe valable + + + + + ERREUR! ce type de bloc (%s) n'est pas valable + + + + + toutes les donnees ne sont pas connues + + + + + Fichier patron %s n'existe pas. + + + + + Pas supporte + + + + + Entite inconnue ou interdite :%s + + + + + Entite inconnue ou interdite :%s. Elle est ignoree + + + + + Les tuples ne sont pas supportes pour le format ini :%s + + + + + Type de valeur non supportee par le format ini :%(nom)s +%(exception)s + nom + + + + + Il y a un pb a la Creation du XML + + + + + Il y a un pb a la Creation du STD + + + + + Entite inconnue ou interdite : %s. Elle est ignoree + + + + + Type de valeur non supporte par le format pyth : n %(exception)s + nom + + + + + Tag %s non-defini. Ceci est un bogue interne. en informer les developpeurs. + + + + + Le mot-cle %s est obligatoire. + + + + + concept %(inst_name)s de type %(class_name)s + inst_name + + + + + Un nom de concept doit etre un identificateur Python + + + + + Concept existant + + + + + Operateur reentrant mais concept non existant + + + + + Operateur reentrant et concept existant trouve + + + + + Concept deja existant et de mauvais type + + + + + Nommage du concept refuse : un concept de meme nom existe deja + + + + + Nommage du concept effectue + + + + + Nommage impossible %s + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese ouvrante manquante + + + + + La liste des arguments d'une formule doit etre entre parentheses : parenthese fermante manquante + + + + + Pas de nom donne a la FORMULE + + + + + Un nom de FORMULE ne peut depasser 8 caracteres + + + + + Un nom de FORMULE ne peut pas commencer par un chiffre + + + + + Le type de la valeur retournee n'est pas specifie + + + + + Une formule ne peut retourner une valeur de type : %s + + + + + Impossible d'ajouter la commande + + + + + Impossible d ajouter la commande + + + + + Pas implemente + + + + + Nom de concept deja defini + + + + + Nom de concept deja defini : + + + + + Impossible de trouver le fichier correspondant a l'unite + + + + + n'est pas un fichier existant + + + + + Fichier invalide %s + + + + + Impossible de construire le jeu de commandes correspondant au fichier + + + + + Erreur lors de l'evaluation du fichier inclus + + + + + Ce fichier ne sera pas pris en compte + %s + + + + + Ce fichier ne sera pas pris en compte +Le fichier associe n'est pas defini + + + + + Le fichier n est pas defini + + + + + le fichier doit contenir une unique variable de sortie + + + + + Fichier invalide + + + + + Le contenu de ce fichier ne sera pas pris en compte + %s + + + + + Le fichier INCLUDE n est pas defini + + + + + Le contenu de ce fichier ne sera pas pris en compte + + + + + + Erreur lors de l'evaluation du fichier poursuite + + + + + L'objet %(v_1)s ne peut etre un fils de %(v_2)s + v_1 + + + + + L'objet %s ne peut pas etre repete + + + + + Erreur - mclist inexistante : %s + + + + + Erreur - mot cle facteur de nom : %s + + + + + traitement non-prevu + + + + + L'objet %s ne peut pas etre ajoute + + + + + None n'est pas une valeur autorisee + + + + + un concept de meme nom existe deja + + + + + Concept cree + + + + + La matrice n'est pas une matrice %(n_lign)d sur %(n_col)d + n_lign + + + + + Impossible de relire le fichier %s + + + + + + Le fichier include contient des erreurs + + + + + n'est pas un index valide pour append_brother + + + + + Decommenter + + + + + Decommente la commande + + + + + Impossible de supprimer un mot-cle obligatoire + + + + + Mot-cle %s supprime + + + + + Pb interne : impossible de supprimer ce mot-cle + + + + + Commentaire supprime + + + + + Commande %s supprimee + + + + + Pb interne : impossible de supprimer cet objet + + + + + Le fichier de commande n'a pas pu etre converti pour etre editable par Eficas + + + + + + + Include vide + + + + + L'include doit etre correctement initialise pour etre visualise + + + + + Impossible de supprimer ce mot-clef + + + + + View3D + + + + + affiche dans Geom les elements de structure + + + + + Graphique + + + + + affiche la distribution + + + + + Erreur interne + + + + + La PDF de la loi ne peut pas etre affichee. + + + + + &Annuler + + + + + Impossible de supprimer un mot-clef obligatoire + + + + + Mot-clef %s supprime + + + + + Pb interne : impossible de supprimer ce mot-clef + + + + + Definition d'un parametre + + + + + Import du fichier de Configuration + + + + + Erreur a la lecture du fichier de configuration %s + + + + + Erreur fatale au chargement de %s + + + + + Erreur fatale au chargement d'un fichier + + + + + fichier modifie + + + + + Attention! fichier change hors EFICAS + + + + + Type de fichier non reconnu + + + + + EFICAS ne sait pas ouvrir le type de fichier %s + + + + + EFICAS ne sait pas ouvrir ce type de fichier + + + + + Copie impossible + + + + + Veuillez selectionner un objet a copier + + + + + Veuillez selectionner un seul objet : la copie se fera apres le noeud selectionne + + + + + Aucun Objet n a ete copie ou coupe + + + + + Copie refusee + + + + + Eficas n a pas reussi a copier l objet + + + + + Copie refusee pour ce type d objet + + + + + Deplacement refuse + + + + + Deplacement refuse entre 2 fichiers. Seule la copie est autorisee + + + + + Copie impossible a cet endroit + + + + + Veuillez selectionner une commande, un parametre, un commentaire ou une macro + + + + + Choix d'un fichier XML + + + + + Le fichier contient une commande MODEL + + + + + + Donnez le nom du fichier XML qui contient la description des variables + + + + + Ouvrir Fichier + + + + + Erreur a la generation + + + + + EFICAS ne sait pas convertir ce JDC + + + + + Format %s non reconnu + + + + + EFICAS ne sait pas convertir le JDC selon le format + + + + + Execution impossible + + + + + le JDC doit etre valide pour une execution MAP + + + + + le JDC doit contenir un et un seul composant + + + + + le JDC doit etre valide pour une execution + + + + + Sauvegarder SVP avant l'execution + + + + + sauvegarde + + + + + Sauvegarde du Fichier + + + + + Le fichier <b>%s</b> existe deja. + + + + + &Ecraser + + + + + Sauvegarde de l'input impossible + + + + + Un JdC valide est necessaire pour creer un .input + + + + + Choix du composant obligatoire + + + + + Choix unite %d + + + + + Le fichier %s contient une commande INCLUDE + + + + + + Donnez le nom du fichier correspondant a l unite logique + + + + + Fichier pour unite + + + + + Choix d'un fichier de poursuite + + + + + Le fichier %s contient une commande POURSUITE + + + + + + Donnez le nom du fichier dont vous + voulez faire une poursuite + + + + + Fichiers Med (*.med);;Tous les Fichiers (*) + + + + + Fichier Med + + + + + Veuillez selectionner un fichier Med + + + + + reel + + + + + entier + + + + + complexe + + + + + Entrez + + + + + Entrez entre + + + + + et + + + + + Type de base inconnu + + + + + Aide Indisponible + + + + + l'aide n est pas installee + + + + + Visualisation Fichier + + + + + Impossibilite d'afficher le Fichier + + + + + Sauvegarder Fichier + + + + + Fichier selectionne + + + + + Selection + + + + + Export Med vers Fichier + + + + + Impossibilite d exporter le Fichier + + + + + Traduire Fichier + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + Fichier Traduit : %s + + + + + + + Pas de difference entre le fichier origine et le fichier traduit + + + + + objet valide + + + + + %d versions du catalogue sont disponibles + + + + + Sauvegarder le fichier + + + + + Le fichier <b>%(v_1)s</b> n'a pu etre sauvegarde. <br>Raison : %(v_2)s + v_1 + + + + + Options pour + + + + + + valeurs + + + + + Nombre minimal de valeurs : + + + + + Nombre maximal de valeurs : + + + + + expression valide + + + + + expression invalide + + + + + l expression n est pas de la forme a+bj + + + + + expression n est pas de la forme a+bj + + + + + entrer une seule valeur SVP + + + + + saisir le type de complexe + + + + + Valeur du mot-cle enregistree + + + + + Valeur du mot-cle non autorisee + + + + + &Recents + + + + + Aide specifique + + + + + Options + + + + + Traduction + + + + + TraduitV7V8 + + + + + TraduitV8V9 + + + + + TraduitV9V10 + + + + + Acquiert Groupe Maille + + + + + Specificites Maille + + + + + version + + + + + pour + + + + + Parametrage + + + + + Veuillez d abord choisir un code + + + + + Pas de possibilite de personnalisation de la configuration + + + + + &Effacer + + + + + Veuillez entrer le complexe sous forme aster ou sous forme python + + + + + Import du catalogue + + + + + Pas de catalogue defini pour le code + + + + + Aucun catalogue trouve + + + + + Impossible d'importer le catalogue + + + + + avec le catalogue + + + + + Choix d une version du code + + + + + Choix d une version + + + + + Parametre + + + + + Insere un parametre + + + + + item invalide + + + + + l item doit etre valide + + + + + &Ok + &Ok + + + + apres + + + + + Insere un commentaire apres la commande + + + + + avant + + + + + Insere un commentaire avant la commande + + + + + Insere un parametre apres la commande + + + + + Insere un parametre avant la commande + + + + + Supprimer + + + + + supprime le mot clef + + + + + Documentation + + + + + documentation sur la commande + + + + + Documentation Vide + + + + + Aucune documentation n'est associee a ce noeud + + + + + impossible de trouver la commande + + + + + Lecteur PDF + + + + + impossible d'ouvrir + + + + + Commentaire + + + + + ce noeud + + + + + commente le noeud + + + + + Fichiers JDC (*.comm);;Tous les Fichiers (*) + + + + + &Quitter + + + + + Quitter + + + + + Fichier Duplique + + + + + Le fichier ne sera pas sauvegarde. + + + + + Fichier + + + + + Le fichier <b>%s</b> est deja ouvert. + + + + + &Duplication + + + + + &Abort + + + + + Fichier Modifie + + + + + Le fichier %s n a pas ete sauvegarde. + + + + + &Sauvegarder + + + + + SOURCE + + + + + EnveloppeConnexeInducteur + + + + + EnveloppeConnexe2 + + + + + VecteurDirecteur + + + + + Centre + + + + + SectionBobine + + + + + Amplitude + + + + + NbdeTours + + + + + CONDUCTEUR + + + + + Conductivite + + + + + PermeabiliteRelative + + + + + NOCOND + + + + + VCUT + + + + + Orientation + + + + + ZS + + + + + PARAMETRES + + + + + RepCarmel + + + + + TypedeFormule + + + + + Frequence + + + + + Nb_Max_Iterations + + + + + Erreur_Max + + + + + PARAMETRE + + + + + Valeur non modifiable + + + + + Format non implemente + + + + + Type d'objet non prevu + + + + + Select + + + + + Sauve Format Ligne + + + + + %s n'est pas un fichier valide + + + + + Fichier de donnees + + + + + Tous les Fichiers (*) + + + + + nb min de valeurs : + + + + + nb max de valeurs atteint + + + + + TraduitV10V11 + + + + + TraduitV11V12 + + + + + Valeur du mot-clef enregistree + + + + + Valeur du mot-clef non autorisee : + + + + + Un concept de nom %s existe déjà ! + + + + + La cardinalite n'est pas correcte, la derniere valeur est ignoree + + + + + n est pas un tuple de + + + + + valeurs + + + + + Valeur incorrecte + + + + + n est pas un identifiant correct + + + + + + Entrer un float SVP + + + + + Entrer un float inferieur a + + + + + Entrer un float superieur a + + + + + Mauvaise execution + + + + + impossible d executer la methode + + + + + Mauvaise Commande + + + + + Aucune variable connue + + + + + Mauvaise dimension de matrice + + + + + le nombre de ligne n est pas egal a + + + + + le nombre de colonne n est pas egal a + + + + + Mauvaise Valeur + + + + + l element + + + + + n est pas correct + + + + + Modification Impossible + + + + + le parametre n'est pas valide + + + + + n est pas un identifiant correct + + + + + Valeur incorrecte: + + + + + Valeur incorrecte + + + + + Valeur correcte + + + + + impossible d'evaluer : + + + + + La formule passee a l'interpreteur doit etre sous forme de tuple + + + + + Debut + + + + + Pas de nom donne au parametre + + + + + Le parametre %s ne peut valoir None + + + + + Format non implemente : %s + + + + + Impossible de realiser la verification de la formule + + + + + Un concept de nom %s existe deja ! + + + + + existe deja + + + + + + Fichier non encore nomme + + + + + La matrice n'a pas le bon entete + + + + + le mot clef + + + + + doit etre insere avant + + + + + insertion impossible + + + + + doit etre insere apres + + + + + Nb maximum de valeurs atteint + + + + + pas de regle de construction pour ce jeu de commandes + + + + + Gestion Maillage + + + + + Acquiert groupe mailles + + + + + Acquisition Groupe Maille + + + + + VERSION + + + + + NUM + + + + + FILETYPE + + + + + PARAMETERS + + + + + Fichier_maillage + + + + + Echelle_du_maillage + + + + + Formulation + + + + + Timeproblem + + + + + spectral + + + + + Basis + + + + + Fourier + + + + + Ordre + + + + + FREQUENCY + + + + + minimisation + + + + + no + + + + + yes + + + + + nb_procs_para + + + + + POLYMER + + + + + MODEL_DATABASE + + + + + Stabilise + + + + + Non Stabilise + + + + + Local + + + + + ESSAI_OPTION + + + + + MATERIEL + + + + + Cable + + + + + Peinture + + + + + Tuyauterie + + + + + Materiau_De_Cable + + + + + PE + + + + + EPDM + + + + + Modele + + + + + Impossible de convertir le fichier Python qui doit contenir des erreurs. + + On retourne le fichier non converti. Prevenir la maintenance. + + %s + + + + + Eficas ne peut pas traiter plusieurs instructions + sur la meme ligne : %s + + + + + le texte a analyser n'est pas celui d'une commande ou + d'un operateur : %s + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + le texte a analyser n'est pas celui d'une commande connue : + %(v_1)s %(v_2)s + v_1 + + + + + jdc %(v_1)s manque + fichier comm dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier + de commandes %(v_2)s n'existe pas + v_1 + + + + + jdc %(v_1)s + fichier include %(v_2)s, %(v_3)s + n'existe pas + v_1 + + + + + jdc %(v_1)s manque fichier comm + dans section %(v_2)s + v_1 + + + + + jdc %(v_1)s, le fichier de commandes + %(v_2)s n'existe pas + v_1 + + + + + Objet commande commentarisé invalide + + + + + ATTENTION! Une source constante + n'est possible qu'a frequence nulle + en regime frequentiel + + + + + ERREUR! Une forme de la source du + type WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ATTENTION! Une source constante n'est + possible qu'a frequence nulle en regime frequentiel + + + + + ERREUR! Une forme de la source du type + WAVEFORM_CONSTANT ou WAVEFORM_SINUS est attendue. + + + + + ERREUR! ce groupe de maille (%s) n'a pas de prefixe + indiquant le type de materiau ou de source associee + + + + + ERREUR! ce groupe de maille (%(nom)s) n'a pas + le prefixe correct pour etre associe a un type %(type_bloc)s + nom + + + + + + Include Invalide. + ne sera pas pris en compte + + + + + : verifie les types dans un tuple + + + + + Les types entres ne sont pas permis + + + + + ChoixCode + + + Choix du code + + + + + Veuillez choisir un code : + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + ChoixCommandes + + + DMacro + + + + + <html><head/><body><p align="center"><span style=" text-decoration: underline;">Affichage</span></p></body></html> + + + + + affiche les commandes par ordre alphabetique + + + + + Alphabetique + + + + + affiche les commandes selon les thèmes + + + + + Ordre de la modélisation + + + + + Par Groupe + + + + + <html><head/><body><p align="center">Filtre Commande</p></body></html> + + + + + filter commands + + + + + affiche les régles de validité + + + + + ... + + + + + Règles de construction + + + + + Sensible à la casse + + + + + Effacer + + + + + selectionne les mots qui CONTIENNENT l expression + + + + + ré-affiche toutes les commandes + + + + + DChoixCata + + + Choix d'une version du code Aster + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">2 versions sont disponibles</span></p></body></html> + + + + + &Cancel + + + + + Validate choice + + + + + &OK + + + + + DSelVal + + + Sélection de valeurs + + + + + Separateur + + + + + espace + + + + + virgule + + + + + point-virgule + + + + + Ajouter Selection + + + + + Importer Tout + + + + + DVisu + + + Visualisation Include Materiau + + + + + Eficas + + + MainWindow + + + + + &Fichier + + + + + &Aide + + + + + toolBar + + + + + &Nouveau + + + + + Ctrl+N + + + + + Nouvel Include + + + + + &Ouvrir + + + + + Ctrl+O + + + + + Enregistrer + + + + + Enregistrer sous + + + + + Fermer + + + + + Ctrl+W + + + + + Fermer tout + + + + + Couper + + + + + Ctrl+X + + + + + Copier + + + + + Ctrl+C + + + + + Coller + + + + + Ctrl+V + + + + + Quitter + + + + + Ctrl+Q + + + + + Rapport de Validation + + + + + Fichier Source + + + + + Fichier Résultat + + + + + Parametres Eficas + + + + + Lecteur documentation + + + + + Eficas + + + + + Version + + + + + Supprimer + + + + + Rechercher + + + + + Rechercher dans l'arbre d'etude + + + + + Ctrl+F + + + + + Replier/Deplier + + + + + Tab 1 + + + + + &Edition + + + + + &JeuDeDonnées + + + + + Shift+I + + + + + Ctrl+S + + + + + Ctrl+Shift+S + + + + + Shift+V + + + + + Chercher Mot-Clef + + + + + Rechercher dans le catalogue + + + + + Shift+F + + + + + Shift+D + + + + + Commentaire + + + + + Shift+C + + + + + Paramètres + + + + + Gestion des paramètres + + + + + Shift+P + + + + + Parametre Eficas + + + + + Execution + + + + + Execution + + + + + Save Run + + + + + Patrons + + + + + Run + + + + + &bad + + + + + Régles du JdC + + + + + JDCEditor + + + Save File + + + + + The file <b>%1</b> could not be saved.<br>Reason: %2 + + + + + JDC (*.comm);;All Files (*) + + + + + &Abandonner + &Abandonner + + + + Tuple2 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Tuple3 + + + Form + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Widget4a6RadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetBloc + + + Form + + + + + WidgetCB + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetCommande + + + DCommandeUnique + + + + + Affiche le rapport de validité de la commande + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + Nom de l'objet. Seuls, les objets valides peuvent être nommés + + + + + Lance un script associé à la commande + + + + + ouvre un navigateur sur l'aide contextuelle + + + + + affiche les régles de validité + + + + + Détruit la commande + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + TextLabel + + + + + WidgetCommentaire + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0000ff;">Commentaire</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + WidgetDate + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetFact + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" font-style:italic;">TextLabel</span></p></body></html> + + + + + WidgetFactPlie + + + Form + + + + + ... + + + + + TextLabel + + + + + WidgetHeure + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><br/></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetInformative + + + Form + + + + + WidgetOptionnel + + + WidgetOptionnel + + + + + <html><head/><body><p><span style=" color:#0000ff;">commande </span></p></body></html> + + + + + WidgetParam + + + DCommandeUnique + + + + + ... + + + + + <html><head/><body><p><span style=" color:#000000;">Paramètre</span></p></body></html> + + + + + Détruit le commentaire + + + + + Affiche les commandes possibles + + + + + &Commandes + + + + + Shift+A, Alt+A, Alt+A, Alt+A + + + + + Affiche le formulaire de la commande précédente + + + + + << + + + + + Affiche le formulaire de la commande suivante + + + + + >> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + Verifie la valeur + + + + + <html><head/><body><p><br/></p></body></html> + + + + + WidgetPlusieursBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Sélectionne depuis Salome + + + + + Visualise dans Salome + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + TextLabel + + + + + WidgetPlusieursInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursIntoOrdonne + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + TextLabel + + + + + Remonte d'une ligne + + + + + Descend d'une ligne + + + + + Détruit une ligne + + + + + ajoute une ligne + + + + + visualise l'ensemble des valeurs + + + + + Détruit le mot-clef + + + + + permet de gérer la liste + + + + + WidgetPlusieursPlie + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + permet de gérer la liste + + + + + Détruit le mot-clef + + + + + WidgetPlusieursTuple + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Remonte la ligne + + + + + Descend la ligne + + + + + supprime une ligne + + + + + Ajoute une ligne + + + + + Montre l'ensemble des valeurs + + + + + Ouvre un fichier de sélection des valeurs + + + + + Détruit le mot-clef + + + + + TextLabel + + + + + WidgetRadioButton + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + RadioButton + + + + + Détruit le mot-clef + + + + + WidgetSDCOInto + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p>Structures de données du type requis </p><p><br/></p></body></html> + + + + + <html><head/><body><p>ou Nom du concept</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBase + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetSimpBool + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + True + + + + + False + + + + + Détruit le mot-clef + + + + + WidgetSimpComplexe + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Complexe : a+bj + + + + + <html><head/><body><p align="center">OU </p></body></html> + + + + + Réel/Imaginaire + + + + + Module/Phase + + + + + WidgetSimpFichier + + + Form + + + + + Affiche le rapport de validité du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + affiche l'explorateur de fichier + + + + + ouvre le fichier choisi + + + + + Détruit le mot-clef + + + + + WidgetSimpTxt + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple2 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetTuple3 + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">(</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">,</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-size:14pt;">)</span></p></body></html> + + + + + Détruit le mot-clef + + + + + WidgetUniqueSDCO + + + Form + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + Attend un objet de type CO + + + + + Détruit le mot-clef + + + + + WidgetVide + + + Form + + + + + ... + + + + + <html><head/><body><p><span style=" color:#0055ff;">Label</span></p></body></html> + + + + + Attend un objet de type XXXX. Il faut le créer + + + + + baseWidget + + + DMacro + + + + + dView + + + Dialog + + + + + Fermer + + + + + Sauver + + + + + desRecherche + + + Rechercher dans le JDC + + + + + Next + + + + + Suivant + + + + + desWidgetCreeParam + + + Gestion des Paramètres + + + + + <html><head/><body><p>Nom: </p></body></html> + + + + + <html><head/><body><p>Valeur: </p></body></html> + + + + + <html><head/><body><p><span style=" text-decoration: underline;">Créer un paramètre</span></p></body></html> + + + + + desWidgetMatrice + + + Dialog + + + + + Affiche le rapport de validation du mot-clef + + + + + ... + + + + + <html><head/><body><p>Met à jour l'en-tête</p></body></html> + + + + + <html><head/><body><p>aaa</p><p>dqsklmdqm</p></body></html> + + + + + self.appliEficas + + + Wrapper Files (*.xml);;All Files (*) + + + + + Noname + + + + + viewRegles + + + Dialog + + + + diff --git a/Validation/V_JDC.py b/Validation/V_JDC.py index f55a3f09..0837aabc 100644 --- a/Validation/V_JDC.py +++ b/Validation/V_JDC.py @@ -69,7 +69,8 @@ class JDC(V_MCCOMPO.MCCOMPO): texte, test = self.verif_regles() if test == 0: if cr == 'oui': - self.cr.fatal(' '.strip(texte)) + if texte != "" and (' '.strip(texte) == "") : self.cr.fatal(texte) + else : self.cr.fatal(' '.strip(texte)) valid = 0 if valid: for e in self.etapes: