[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

Markus Mohrhard markus.mohrhard at googlemail.com
Sun Dec 1 22:05:50 PST 2013


 sc/source/filter/oox/workbookhelper.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 86529805e7922e846c7d1ed9e56ae44f84c97218
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Mon Dec 2 09:04:57 2013 +0100

    Revert "fdo#72078 make status bar text localizable"
    
    This reverts commit ae5519c8c42b2a9473da236f3c84bfe630893cc4.

diff --git a/sc/source/filter/oox/workbookhelper.cxx b/sc/source/filter/oox/workbookhelper.cxx
index 8f09d3a..09c6947 100644
--- a/sc/source/filter/oox/workbookhelper.cxx
+++ b/sc/source/filter/oox/workbookhelper.cxx
@@ -572,7 +572,8 @@ void WorkbookGlobals::initialize( bool bWorkbookFile )
         if( xLockable.is() )
             xLockable->addActionLock();
 
-        mxProgressBar.reset( new SegmentProgressBar( mrBaseFilter.getStatusIndicator(), ScGlobal::GetRscString(STR_LOAD_DOC) ) );
+        //! TODO: localize progress bar text
+        mxProgressBar.reset( new SegmentProgressBar( mrBaseFilter.getStatusIndicator(), "Loading..." ) );
         mxFmlaParser.reset( new FormulaParser( *this ) );
 
         //prevent unnecessary broadcasts and "half way listeners" as
@@ -581,7 +582,8 @@ void WorkbookGlobals::initialize( bool bWorkbookFile )
     }
     else if( mrBaseFilter.isExportFilter() )
     {
-        mxProgressBar.reset( new SegmentProgressBar( mrBaseFilter.getStatusIndicator(), ScGlobal::GetRscString(STR_SAVE_DOC) ) );
+        //! TODO: localize progress bar text
+        mxProgressBar.reset( new SegmentProgressBar( mrBaseFilter.getStatusIndicator(), "Saving..." ) );
     }
     // filter specific
     switch( getFilterType() )


More information about the Libreoffice-commits mailing list