From: gdd Date: Thu, 10 May 2012 14:15:28 +0000 (+0000) Subject: Update translations X-Git-Tag: V6_5_0~15 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7bb5234a22a219835474adc6026b538874bf2b15;p=modules%2Fgeom.git Update translations --- diff --git a/src/GEOMGUI/GEOM_msg_en.ts b/src/GEOMGUI/GEOM_msg_en.ts index 459a3946c..83b653889 100644 --- a/src/GEOMGUI/GEOM_msg_en.ts +++ b/src/GEOMGUI/GEOM_msg_en.ts @@ -3394,6 +3394,14 @@ Please, select face, shell or solid and try again STB_POP_SHADING_WITH_EDGES Shading With Edges + + STB_POP_TEXTURE + Texture + + + STB_POP_VECTORS + Show Edge Direction + STB_POP_SETTEXTURE Add a texture @@ -3434,10 +3442,18 @@ Please, select face, shell or solid and try again STB_SEWING Perform sewing + + STB_WIREFRAME + Wireframe + STB_SHADING Shading + + STB_SHADING_WITH_EDGES + Shading with edges + STB_VECTOR_MODE Change Edge Presentation Mode diff --git a/src/GEOMGUI/GEOM_msg_fr.ts b/src/GEOMGUI/GEOM_msg_fr.ts index b4be2f445..d0a4c96da 100644 --- a/src/GEOMGUI/GEOM_msg_fr.ts +++ b/src/GEOMGUI/GEOM_msg_fr.ts @@ -2692,7 +2692,7 @@ Choisissez une face, une coque ou un solide et essayez de nouveau MEN_POP_VECTORS - Montrer l'orientation de l'arête + Afficher l'orientation des arêtes MEN_PREFERENCES @@ -3394,6 +3394,14 @@ Choisissez une face, une coque ou un solide et essayez de nouveau STB_POP_SHADING_WITH_EDGES Ombrage avec arêtes + + STB_POP_TEXTURE + Texture + + + STB_POP_VECTORS + Afficher l'orientation des arêtes + STB_POP_SETTEXTURE Ajoute une texture @@ -3434,10 +3442,18 @@ Choisissez une face, une coque ou un solide et essayez de nouveau STB_SEWING Effectuer la couture + + STB_WIREFRAME + Contours + STB_SHADING Ombrage + + STB_SHADING_WITH_EDGES + Ombrage avec arêtes + STB_VECTOR_MODE Changer le mode de représentation des arêtes @@ -4521,7 +4537,7 @@ le paramètre '%1' aux préférences du module Géométrie. STB_PIPETSHAPE - Créer un nouveau tuyau en T + Créer un tuyau en T GEOM_ADVANCED_201 diff --git a/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx b/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx index c0f1dbd7f..230ac2f47 100644 --- a/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx +++ b/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx @@ -414,7 +414,7 @@ void GEOMToolsGUI::OnTexture() SUIT_ViewWindow* window = app->desktop()->activeWindow(); bool isOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() ); if ( isOCC ) { - QString aTexture = QFileDialog::getOpenFileName(window,tr( "GEOM_SELECT_IMAGE"),QString(), tr("OCC_IMAGE_FILES")); + QString aTexture = QFileDialog::getOpenFileName(window,tr( "GEOM_SELECT_IMAGE"),QString(), tr("OCC_TEXTURE_FILES")); if( !aTexture.isEmpty() ) { SUIT_OverrideCursor(); @@ -425,8 +425,8 @@ void GEOMToolsGUI::OnTexture() io = GEOMBase::GetAIS( It.Value(), true ); if ( !io.IsNull() ) { if ( io->IsKind( STANDARD_TYPE(GEOM_AISShape) ) ) - Handle(GEOM_AISShape)::DownCast( io )->SetTextureFileName(TCollection_AsciiString(aTexture.toStdString().c_str())); - io->Redisplay( Standard_True ); + Handle(GEOM_AISShape)::DownCast( io )->SetTextureFileName(TCollection_AsciiString(aTexture.toStdString().c_str())); + io->Redisplay( Standard_True ); } // if ( !io.IsNull() ) } // for ic->UpdateCurrentViewer();