]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix for IPAL13834 : Too many "ccc" in the "Successive animation". V3_2_3 V3_2_3pre2 V3_2_3pre4 V3_2_3pre5
authormkr <mkr@opencascade.com>
Wed, 8 Nov 2006 14:22:46 +0000 (14:22 +0000)
committermkr <mkr@opencascade.com>
Wed, 8 Nov 2006 14:22:46 +0000 (14:22 +0000)
src/VISUGUI/VISU_msg_en.po
src/VISUGUI/VisuGUI_TimeAnimation.cxx

index a5811608e0f435dd2557182a4f9f42f379d26baf..488918678930dd2c567c62fdcd1b9ae4d56aa174 100644 (file)
@@ -243,7 +243,13 @@ msgid "VisuGUI::MEN_PARALLEL_ANIMATION"
 msgstr "Parallel Animation..."
 
 msgid "VisuGUI::MEN_SUCCCESSIVE_ANIMATION"
-msgstr "Succcessive Animation..."
+msgstr "Successive Animation..."
+
+msgid "PARALLEL_ANIMATION"
+msgstr "Parallel Animation"
+
+msgid "SUCCESSIVE_ANIMATION"
+msgstr "Successive Animation"
 
 msgid "VisuGUI::MEN_CELL_COLOR"
 msgstr "Cell color"
index 7fb6f5a0ce0c985b13d62da9572069595e965706..d38c68d1e3c4058c4b26ac1d7e208fece4dfc776 100644 (file)
@@ -1067,9 +1067,9 @@ VisuGUI_TimeAnimationDlg::VisuGUI_TimeAnimationDlg (VisuGUI* theModule, _PTR(Stu
   mySetupDlg(NULL)
 {
   if ( theMode == 0 )
-    setCaption("Parallel Animation");
+    setCaption(tr("PARALLEL_ANIMATION"));
   else if ( theMode == 1 )
-    setCaption("Succcessive Animation");
+    setCaption(tr("SUCCESSIVE_ANIMATION"));
   setSizeGripEnabled( TRUE );
   isClosing = false;
 
@@ -1603,7 +1603,7 @@ void VisuGUI_TimeAnimationDlg::restoreFromStudy(_PTR(SObject) theAnimation)
   myAnimator->restoreFromStudy(theAnimation);
   mySaveBtn->setEnabled(myAnimator->isSavedInStudy());
   if ( myAnimator->getAnimationMode() == 1 ) 
-    setCaption("Succcessive Animation");
+    setCaption(tr("SUCCESSIVE_ANIMATION"));
 }
 
 //------------------------------------------------------------------------