From d27e0232242f731c28020c6d2a7bcfd114c8ac68 Mon Sep 17 00:00:00 2001 From: mkr Date: Wed, 8 Nov 2006 14:22:46 +0000 Subject: [PATCH] Fix for IPAL13834 : Too many "ccc" in the "Successive animation". --- src/VISUGUI/VISU_msg_en.po | 8 +++++++- src/VISUGUI/VisuGUI_TimeAnimation.cxx | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/VISUGUI/VISU_msg_en.po b/src/VISUGUI/VISU_msg_en.po index a5811608..48891867 100644 --- a/src/VISUGUI/VISU_msg_en.po +++ b/src/VISUGUI/VISU_msg_en.po @@ -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" diff --git a/src/VISUGUI/VisuGUI_TimeAnimation.cxx b/src/VISUGUI/VisuGUI_TimeAnimation.cxx index 7fb6f5a0..d38c68d1 100644 --- a/src/VISUGUI/VisuGUI_TimeAnimation.cxx +++ b/src/VISUGUI/VisuGUI_TimeAnimation.cxx @@ -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")); } //------------------------------------------------------------------------ -- 2.39.2