/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "mathtype.hxx" #include "ooxmlexport.hxx" #include "ooxmlimport.hxx" #include "rtfexport.hxx" #include #include #include #include #include #include #include "accessibility.hxx" #include #include #include #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::accessibility; using namespace ::com::sun::star::uno; #define ShellClass_SmDocShell #include SFX_IMPL_SUPERCLASS_INTERFACE(SmDocShell, SfxObjectShell) void SmDocShell::InitInterface_Impl() { GetStaticInterface()->RegisterPopupMenu("view"); } void SmDocShell::SetSmSyntaxVersion(sal_uInt16 nSmSyntaxVersion) { mnSmSyntaxVersion = nSmSyntaxVersion; maParser.reset(starmathdatabase::GetVersionSmParser(mnSmSyntaxVersion)); SmViewShell* pViewSh = SmGetActiveView(); if (pViewSh) { SmElementsDockingWindow* dockingWindow = pViewSh->GetDockingWindow(); if(dockingWindow) { dockingWindow->setSmSyntaxVersion(nSmSyntaxVersion); } } } SFX_IMPL_OBJECTFACTORY(SmDocShell, SvGlobalName(SO3_SM_CLASSID), "smath" ) void SmDocShell::Notify(SfxBroadcaster&, const SfxHint& rHint) { if (rHint.GetId() == SfxHintId::MathFormatChanged) { SetFormulaArranged(false); mnModifyCount++; //! see comment for SID_GRAPHIC_SM in SmDocShell::GetState Repaint(); } } void SmDocShell::LoadSymbols() { SmModule *pp = SM_MOD(); pp->GetSymbolManager().Load(); } OUString SmDocShell::GetComment() const { uno::Reference xDPS( GetModel(), uno::UNO_QUERY_THROW); uno::Reference xDocProps( xDPS->getDocumentProperties()); return xDocProps->getDescription(); } void SmDocShell::SetText(const OUString& rBuffer) { if (rBuffer == maText) return; bool bIsEnabled = IsEnableSetModified(); if( bIsEnabled ) EnableSetModified( false ); maText = rBuffer; SetFormulaArranged( false ); Parse(); SmViewShell *pViewSh = SmGetActiveView(); if( pViewSh ) { pViewSh->GetViewFrame()->GetBindings().Invalidate(SID_TEXT); if ( SfxObjectCreateMode::EMBEDDED == GetCreateMode() ) { // have SwOleClient::FormatChanged() to align the modified formula properly // even if the visible area does not change (e.g. when formula text changes from // "{a over b + c} over d" to "d over {a over b + c}" SfxGetpApp()->NotifyEvent(SfxEventHint( SfxEventHintId::VisAreaChanged, GlobalEventConfig::GetEventName(GlobalEventId::VISAREACHANGED), this)); Repaint(); } else pViewSh->GetGraphicWidget().Invalidate(); } if ( bIsEnabled ) EnableSetModified( bIsEnabled ); SetModified(); // launch accessible event if necessary SmGraphicAccessible *pAcc = pViewSh ? pViewSh->GetGraphicWidget().GetAccessible_Impl() : nullptr; if (pAcc) { Any aOldValue, aNewValue; if ( comphelper::OCommonAccessibleText::implInitTextChangedEvent( maText, rBuffer, aOldValue, aNewValue ) ) { pAcc->LaunchEvent( AccessibleEventId::TEXT_CHANGED, aOldValue, aNewValue ); } } if ( GetCreateMode() == SfxObjectCreateMode::EMBEDDED ) OnDocumentPrinterChanged(nullptr); } void SmDocShell::SetFormat(SmFormat const & rFormat) { maFormat = rFormat; SetFormulaArranged( false ); SetModified(); mnModifyCount++; //! see comment for SID_GRAPHIC_SM in SmDocShell::GetState // don't use SmGetActiveView since the view shell might not be active (0 pointer) // if for example the Basic Macro dialog currently has the focus. Thus: SfxViewFrame* pFrm = SfxViewFrame::GetFirst( this ); while (pFrm) { pFrm->GetBindings().Invalidate(SID_GRAPHIC_SM); pFrm = SfxViewFrame::GetNext( *pFrm, this ); } } OUString const & SmDocShell::GetAccessibleText() { ArrangeFormula(); if (maAccText.isEmpty()) { OSL_ENSURE( mpTree, "Tree missing" ); if (mpTree) { OUStringBuffer aBuf; mpTree->GetAccessibleText(aBuf); maAccText = aBuf.makeStringAndClear(); } } return maAccText; } void SmDocShell::Parse() { mpTree.reset(); ReplaceBadChars(); mpTree = maParser->Parse(maText); mnModifyCount++; //! see comment for SID_GRAPHIC_SM in SmDocShell::GetState SetFormulaArranged( false ); InvalidateCursor(); maUsedSymbols = maParser->GetUsedSymbols(); } void SmDocShell::ArrangeFormula() { if (mbFormulaArranged) return; // Only for the duration of the existence of this object the correct settings // at the printer are guaranteed! SmPrinterAccess aPrtAcc(*this); OutputDevice* pOutDev = aPrtAcc.GetRefDev(); SAL_WARN_IF( !pOutDev, "starmath", "!! SmDocShell::ArrangeFormula: reference device missing !!"); // if necessary get another OutputDevice for which we format if (!pOutDev) { SmViewShell *pView = SmGetActiveView(); if (pView) pOutDev = &pView->GetGraphicWidget().GetDrawingArea()->get_ref_device(); else { pOutDev = &SM_MOD()->GetDefaultVirtualDev(); pOutDev->SetMapMode( MapMode(MapUnit::Map100thMM) ); } } OSL_ENSURE(pOutDev->GetMapMode().GetMapUnit() == MapUnit::Map100thMM, "Sm : wrong MapMode"); const SmFormat &rFormat = GetFormat(); mpTree->Prepare(rFormat, *this, 0); // format/draw formulas always from left to right, // and numbers should not be converted ComplexTextLayoutFlags nLayoutMode = pOutDev->GetLayoutMode(); pOutDev->SetLayoutMode( ComplexTextLayoutFlags::Default ); LanguageType nDigitLang = pOutDev->GetDigitLanguage(); pOutDev->SetDigitLanguage( LANGUAGE_ENGLISH ); mpTree->Arrange(*pOutDev, rFormat); pOutDev->SetLayoutMode( nLayoutMode ); pOutDev->SetDigitLanguage( nDigitLang ); SetFormulaArranged(true); // invalidate accessible text maAccText.clear(); } void SmDocShell::UpdateEditEngineDefaultFonts() { SmEditEngine::setSmItemPool(mpEditEngineItemPool.get(), maLinguOptions); } EditEngine& SmDocShell::GetEditEngine() { if (!mpEditEngine) { //! //! see also SmEditWindow::DataChanged ! //! mpEditEngineItemPool = EditEngine::CreatePool(); SmEditEngine::setSmItemPool(mpEditEngineItemPool.get(), maLinguOptions); mpEditEngine.reset( new SmEditEngine( mpEditEngineItemPool.get() ) ); mpEditEngine->EraseVirtualDevice(); // set initial text if the document already has some... // (may be the case when reloading a doc) OUString aTxt( GetText() ); if (!aTxt.isEmpty()) mpEditEngine->SetText( aTxt ); mpEditEngine->ClearModifyFlag(); } return *mpEditEngine; } void SmDocShell::DrawFormula(OutputDevice &rDev, Point &rPosition, bool bDrawSelection) { if (!mpTree) Parse(); OSL_ENSURE(mpTree, "Sm : NULL pointer"); ArrangeFormula(); // Problem: What happens to WYSIWYG? While we're active inplace, we don't have a reference // device and aren't aligned to that either. So now there can be a difference between the // VisArea (i.e. the size within the client) and the current size. // Idea: The difference could be adapted with SmNod::SetSize (no long-term solution) rPosition.AdjustX(maFormat.GetDistance( DIS_LEFTSPACE ) ); rPosition.AdjustY(maFormat.GetDistance( DIS_TOPSPACE ) ); //! in case of high contrast-mode (accessibility option!) //! the draw mode needs to be set to default, because when embedding //! Math for example in Calc in "a over b" the fraction bar may not //! be visible else. More generally: the FillColor may have been changed. DrawModeFlags nOldDrawMode = DrawModeFlags::Default; bool bRestoreDrawMode = false; if (OUTDEV_WINDOW == rDev.GetOutDevType() && rDev.GetOwnerWindow()->GetSettings().GetStyleSettings().GetHighContrastMode()) { nOldDrawMode = rDev.GetDrawMode(); rDev.SetDrawMode( DrawModeFlags::Default ); bRestoreDrawMode = true; } // format/draw formulas always from left to right // and numbers should not be converted ComplexTextLayoutFlags nLayoutMode = rDev.GetLayoutMode(); rDev.SetLayoutMode( ComplexTextLayoutFlags::Default ); LanguageType nDigitLang = rDev.GetDigitLanguage(); rDev.SetDigitLanguage( LANGUAGE_ENGLISH ); //Set selection if any if(mpCursor && bDrawSelection){ mpCursor->AnnotateSelection(); SmSelectionDrawingVisitor(rDev, mpTree.get(), rPosition); } //Drawing using visitor SmDrawingVisitor(rDev, rPosition, mpTree.get()); rDev.SetLayoutMode( nLayoutMode ); rDev.SetDigitLanguage( nDigitLang ); if (bRestoreDrawMode) rDev.SetDrawMode( nOldDrawMode ); } Size SmDocShell::GetSize() { Size aRet; if (!mpTree) Parse(); if (mpTree) { ArrangeFormula(); aRet = mpTree->GetSize(); if ( !aRet.Width() ) aRet.setWidth( 2000 ); else aRet.AdjustWidth(maFormat.GetDistance( DIS_LEFTSPACE ) + maFormat.GetDistance( DIS_RIGHTSPACE ) ); if ( !aRet.Height() ) aRet.setHeight( 1000 ); else aRet.AdjustHeight(maFormat.GetDistance( DIS_TOPSPACE ) + maFormat.GetDistance( DIS_BOTTOMSPACE ) ); } return aRet; } void SmDocShell::InvalidateCursor(){ mpCursor.reset(); } SmCursor& SmDocShell::GetCursor(){ if(!mpCursor) mpCursor.reset(new SmCursor(mpTree.get(), this)); return *mpCursor; } bool SmDocShell::HasCursor() const { return mpCursor != nullptr; } SmPrinterAccess::SmPrinterAccess( SmDocShell &rDocShell ) { pPrinter = rDocShell.GetPrt(); if ( pPrinter ) { pPrinter->Push( PushFlags::MAPMODE ); if ( SfxObjectCreateMode::EMBEDDED == rDocShell.GetCreateMode() ) { // if it is an embedded object (without its own printer) // we change the MapMode temporarily. //!If it is a document with its own printer the MapMode should //!be set correct (once) elsewhere(!), in order to avoid numerous //!superfluous pushing and popping of the MapMode when using //!this class. const MapUnit eOld = pPrinter->GetMapMode().GetMapUnit(); if ( MapUnit::Map100thMM != eOld ) { MapMode aMap( pPrinter->GetMapMode() ); aMap.SetMapUnit( MapUnit::Map100thMM ); Point aTmp( aMap.GetOrigin() ); aTmp.setX( OutputDevice::LogicToLogic( aTmp.X(), eOld, MapUnit::Map100thMM ) ); aTmp.setY( OutputDevice::LogicToLogic( aTmp.Y(), eOld, MapUnit::Map100thMM ) ); aMap.SetOrigin( aTmp ); pPrinter->SetMapMode( aMap ); } } } pRefDev = rDocShell.GetRefDev(); if ( !pRefDev || pPrinter.get() == pRefDev.get() ) return; pRefDev->Push( PushFlags::MAPMODE ); if ( SfxObjectCreateMode::EMBEDDED != rDocShell.GetCreateMode() ) return; // if it is an embedded object (without its own printer) // we change the MapMode temporarily. //!If it is a document with its own printer the MapMode should //!be set correct (once) elsewhere(!), in order to avoid numerous //!superfluous pushing and popping of the MapMode when using //!this class. const MapUnit eOld = pRefDev->GetMapMode().GetMapUnit(); if ( MapUnit::Map100thMM != eOld ) { MapMode aMap( pRefDev->GetMapMode() ); aMap.SetMapUnit( MapUnit::Map100thMM ); Point aTmp( aMap.GetOrigin() ); aTmp.setX( OutputDevice::LogicToLogic( aTmp.X(), eOld, MapUnit::Map100thMM ) ); aTmp.setY( OutputDevice::LogicToLogic( aTmp.Y(), eOld, MapUnit::Map100thMM ) ); aMap.SetOrigin( aTmp ); pRefDev->SetMapMode( aMap ); } } SmPrinterAccess::~SmPrinterAccess() { if ( pPrinter ) pPrinter->Pop(); if ( pRefDev && pRefDev != pPrinter ) pRefDev->Pop(); } Printer* SmDocShell::GetPrt() { if (SfxObjectCreateMode::EMBEDDED == GetCreateMode()) { // Normally the server provides the printer. But if it doesn't provide one (e.g. because // there is no connection) it still can be the case that we know the printer because it // has been passed on by the server in OnDocumentPrinterChanged and being kept temporarily. Printer* pPrt = GetDocumentPrinter(); if (!pPrt && mpTmpPrinter) pPrt = mpTmpPrinter; return pPrt; } else if (!mpPrinter) { auto pOptions = std::make_unique( GetPool(), svl::Items< SID_PRINTTITLE, SID_PRINTZOOM, SID_NO_RIGHT_SPACES, SID_SAVE_ONLY_USED_SYMBOLS, SID_AUTO_CLOSE_BRACKETS, SID_AUTO_CLOSE_BRACKETS>); SmModule *pp = SM_MOD(); pp->GetConfig()->ConfigToItemSet(*pOptions); mpPrinter = VclPtr::Create(std::move(pOptions)); mpPrinter->SetMapMode(MapMode(MapUnit::Map100thMM)); } return mpPrinter; } OutputDevice* SmDocShell::GetRefDev() { if (SfxObjectCreateMode::EMBEDDED == GetCreateMode()) { OutputDevice* pOutDev = GetDocumentRefDev(); if (pOutDev) return pOutDev; } return GetPrt(); } void SmDocShell::SetPrinter( SfxPrinter *pNew ) { mpPrinter.disposeAndClear(); mpPrinter = pNew; //Transfer ownership mpPrinter->SetMapMode( MapMode(MapUnit::Map100thMM) ); SetFormulaArranged(false); Repaint(); } void SmDocShell::OnDocumentPrinterChanged( Printer *pPrt ) { mpTmpPrinter = pPrt; SetFormulaArranged(false); Size aOldSize = GetVisArea().GetSize(); Repaint(); if( aOldSize != GetVisArea().GetSize() && !maText.isEmpty() ) SetModified(); mpTmpPrinter = nullptr; } void SmDocShell::Repaint() { bool bIsEnabled = IsEnableSetModified(); if (bIsEnabled) EnableSetModified( false ); SetFormulaArranged(false); Size aVisSize = GetSize(); SetVisAreaSize(aVisSize); SmViewShell* pViewSh = SmGetActiveView(); if (pViewSh) pViewSh->GetGraphicWidget().Invalidate(); if (bIsEnabled) EnableSetModified(bIsEnabled); } SmDocShell::SmDocShell( SfxModelFlags i_nSfxCreationFlags ) : SfxObjectShell(i_nSfxCreationFlags) , m_pMlElementTree(nullptr) , mpPrinter(nullptr) , mpTmpPrinter(nullptr) , mnModifyCount(0) , mbFormulaArranged(false) , mnSmSyntaxVersion(SM_MOD()->GetConfig()->GetDefaultSmSyntaxVersion()) { SvtLinguConfig().GetOptions(maLinguOptions); SetPool(&SfxGetpApp()->GetPool()); SmModule *pp = SM_MOD(); maFormat = pp->GetConfig()->GetStandardFormat(); StartListening(maFormat); StartListening(*pp->GetConfig()); SetBaseModel(new SmModel(this)); SetSmSyntaxVersion(mnSmSyntaxVersion); } SmDocShell::~SmDocShell() { SmModule *pp = SM_MOD(); EndListening(maFormat); EndListening(*pp->GetConfig()); mpCursor.reset(); mpEditEngine.reset(); mpEditEngineItemPool.clear(); mpPrinter.disposeAndClear(); mathml::SmMlIteratorFree(m_pMlElementTree); } bool SmDocShell::ConvertFrom(SfxMedium &rMedium) { bool bSuccess = false; const OUString& rFltName = rMedium.GetFilter()->GetFilterName(); OSL_ENSURE( rFltName != STAROFFICE_XML, "Wrong filter!"); if ( rFltName == MATHML_XML ) { if (mpTree) { mpTree.reset(); InvalidateCursor(); } Reference xModel(GetModel()); SmXMLImportWrapper aEquation(xModel); aEquation.useHTMLMLEntities(true); bSuccess = ( ERRCODE_NONE == aEquation.Import(rMedium) ); } else { SvStream *pStream = rMedium.GetInStream(); if ( pStream ) { if ( SotStorage::IsStorageFile( pStream ) ) { tools::SvRef aStorage = new SotStorage( pStream, false ); if ( aStorage->IsStream("Equation Native") ) { // is this a MathType Storage? OUStringBuffer aBuffer; MathType aEquation(aBuffer); bSuccess = aEquation.Parse( aStorage.get() ); if ( bSuccess ) { maText = aBuffer.makeStringAndClear(); Parse(); } } } } } if ( GetCreateMode() == SfxObjectCreateMode::EMBEDDED ) { SetFormulaArranged( false ); Repaint(); } FinishedLoading(); return bSuccess; } bool SmDocShell::InitNew( const uno::Reference < embed::XStorage >& xStorage ) { bool bRet = false; if ( SfxObjectShell::InitNew( xStorage ) ) { bRet = true; SetVisArea(tools::Rectangle(Point(0, 0), Size(2000, 1000))); } return bRet; } bool SmDocShell::Load( SfxMedium& rMedium ) { bool bRet = false; if( SfxObjectShell::Load( rMedium )) { uno::Reference < embed::XStorage > xStorage = GetMedium()->GetStorage(); if (xStorage->hasByName("content.xml") && xStorage->isStreamElement("content.xml")) { // is this a fabulous math package ? Reference xModel(GetModel()); SmXMLImportWrapper aEquation(xModel); auto nError = aEquation.Import(rMedium); bRet = ERRCODE_NONE == nError; SetError(nError); } } if ( GetCreateMode() == SfxObjectCreateMode::EMBEDDED ) { SetFormulaArranged( false ); Repaint(); } FinishedLoading(); return bRet; } bool SmDocShell::Save() { //! apply latest changes if necessary UpdateText(); if ( SfxObjectShell::Save() ) { if (!mpTree) Parse(); if( mpTree ) ArrangeFormula(); Reference xModel(GetModel()); SmXMLExportWrapper aEquation(xModel); aEquation.SetFlat(false); return aEquation.Export(*GetMedium()); } return false; } /* * replace bad characters that can not be saved. (#i74144) * */ void SmDocShell::ReplaceBadChars() { bool bReplace = false; if (!mpEditEngine) return; OUStringBuffer aBuf( mpEditEngine->GetText() ); for (sal_Int32 i = 0; i < aBuf.getLength(); ++i) { if (aBuf[i] < ' ' && aBuf[i] != '\r' && aBuf[i] != '\n' && aBuf[i] != '\t') { aBuf[i] = ' '; bReplace = true; } } if (bReplace) maText = aBuf.makeStringAndClear(); } void SmDocShell::UpdateText() { if (mpEditEngine && mpEditEngine->IsModified()) { OUString aEngTxt( mpEditEngine->GetText() ); if (GetText() != aEngTxt) SetText( aEngTxt ); } } bool SmDocShell::SaveAs( SfxMedium& rMedium ) { bool bRet = false; //! apply latest changes if necessary UpdateText(); if ( SfxObjectShell::SaveAs( rMedium ) ) { if (!mpTree) Parse(); if( mpTree ) ArrangeFormula(); Reference xModel(GetModel()); SmXMLExportWrapper aEquation(xModel); aEquation.SetFlat(false); bRet = aEquation.Export(rMedium); } return bRet; } bool SmDocShell::ConvertTo( SfxMedium &rMedium ) { bool bRet = false; std::shared_ptr pFlt = rMedium.GetFilter(); if( pFlt ) { if( !mpTree ) Parse(); if( mpTree ) ArrangeFormula(); const OUString& rFltName = pFlt->GetFilterName(); if(rFltName == STAROFFICE_XML) { Reference xModel(GetModel()); SmXMLExportWrapper aEquation(xModel); aEquation.SetFlat(false); bRet = aEquation.Export(rMedium); } else if(rFltName == MATHML_XML) { Reference xModel(GetModel()); SmXMLExportWrapper aEquation(xModel); aEquation.SetFlat(true); aEquation.SetUseHTMLMLEntities(true); bRet = aEquation.Export(rMedium); } else if (pFlt->GetFilterName() == "MathType 3.x") bRet = WriteAsMathType3( rMedium ); } return bRet; } void SmDocShell::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr const& pSerializer, oox::core::OoxmlVersion const version, oox::drawingml::DocumentType const documentType, const sal_Int8 nAlign) { if( !mpTree ) Parse(); if( mpTree ) ArrangeFormula(); SmOoxmlExport aEquation(mpTree.get(), version, documentType); if(documentType == oox::drawingml::DOCUMENT_DOCX) aEquation.ConvertFromStarMath( pSerializer, nAlign); else aEquation.ConvertFromStarMath(pSerializer, oox::FormulaExportBase::eFormulaAlign::INLINE); } void SmDocShell::writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding) { if (!mpTree) Parse(); if (mpTree) ArrangeFormula(); SmRtfExport aEquation(mpTree.get()); aEquation.ConvertFromStarMath(rBuffer, nEncoding); } void SmDocShell::readFormulaOoxml( oox::formulaimport::XmlStream& stream ) { SmOoxmlImport aEquation( stream ); SetText( aEquation.ConvertToStarMath()); } void SmDocShell::Execute(SfxRequest& rReq) { switch (rReq.GetSlot()) { case SID_TEXTMODE: { SmFormat aOldFormat = GetFormat(); SmFormat aNewFormat( aOldFormat ); aNewFormat.SetTextmode(!aOldFormat.IsTextmode()); SfxUndoManager *pTmpUndoMgr = GetUndoManager(); if (pTmpUndoMgr) pTmpUndoMgr->AddUndoAction( std::make_unique(this, aOldFormat, aNewFormat)); SetFormat( aNewFormat ); Repaint(); } break; case SID_AUTO_REDRAW : { SmModule *pp = SM_MOD(); bool bRedraw = pp->GetConfig()->IsAutoRedraw(); pp->GetConfig()->SetAutoRedraw(!bRedraw); } break; case SID_LOADSYMBOLS: LoadSymbols(); break; case SID_SAVESYMBOLS: SaveSymbols(); break; case SID_FONT: { // get device used to retrieve the FontList OutputDevice *pDev = GetPrinter(); if (!pDev || pDev->GetDevFontCount() == 0) pDev = &SM_MOD()->GetDefaultVirtualDev(); OSL_ENSURE (pDev, "device for font list missing" ); SmFontTypeDialog aFontTypeDialog(rReq.GetFrameWeld(), pDev); SmFormat aOldFormat = GetFormat(); aFontTypeDialog.ReadFrom( aOldFormat ); if (aFontTypeDialog.run() == RET_OK) { SmFormat aNewFormat( aOldFormat ); aFontTypeDialog.WriteTo(aNewFormat); SfxUndoManager *pTmpUndoMgr = GetUndoManager(); if (pTmpUndoMgr) pTmpUndoMgr->AddUndoAction( std::make_unique(this, aOldFormat, aNewFormat)); SetFormat( aNewFormat ); Repaint(); } } break; case SID_FONTSIZE: { SmFontSizeDialog aFontSizeDialog(rReq.GetFrameWeld()); SmFormat aOldFormat = GetFormat(); aFontSizeDialog.ReadFrom( aOldFormat ); if (aFontSizeDialog.run() == RET_OK) { SmFormat aNewFormat( aOldFormat ); aFontSizeDialog.WriteTo(aNewFormat); SfxUndoManager *pTmpUndoMgr = GetUndoManager(); if (pTmpUndoMgr) pTmpUndoMgr->AddUndoAction( std::make_unique(this, aOldFormat, aNewFormat)); SetFormat( aNewFormat ); Repaint(); } } break; case SID_DISTANCE: { SmDistanceDialog aDistanceDialog(rReq.GetFrameWeld()); SmFormat aOldFormat = GetFormat(); aDistanceDialog.ReadFrom( aOldFormat ); if (aDistanceDialog.run() == RET_OK) { SmFormat aNewFormat( aOldFormat ); aDistanceDialog.WriteTo(aNewFormat); SfxUndoManager *pTmpUndoMgr = GetUndoManager(); if (pTmpUndoMgr) pTmpUndoMgr->AddUndoAction( std::make_unique(this, aOldFormat, aNewFormat)); SetFormat( aNewFormat ); Repaint(); } } break; case SID_ALIGN: { SmAlignDialog aAlignDialog(rReq.GetFrameWeld()); SmFormat aOldFormat = GetFormat(); aAlignDialog.ReadFrom( aOldFormat ); if (aAlignDialog.run() == RET_OK) { SmFormat aNewFormat( aOldFormat ); aAlignDialog.WriteTo(aNewFormat); SmModule *pp = SM_MOD(); SmFormat aFmt( pp->GetConfig()->GetStandardFormat() ); aAlignDialog.WriteTo( aFmt ); pp->GetConfig()->SetStandardFormat( aFmt ); SfxUndoManager *pTmpUndoMgr = GetUndoManager(); if (pTmpUndoMgr) pTmpUndoMgr->AddUndoAction( std::make_unique(this, aOldFormat, aNewFormat)); SetFormat( aNewFormat ); Repaint(); } } break; case SID_TEXT: { const SfxStringItem& rItem = static_cast(rReq.GetArgs()->Get(SID_TEXT)); if (GetText() != rItem.GetValue()) SetText(rItem.GetValue()); } break; case SID_UNDO: case SID_REDO: { SfxUndoManager* pTmpUndoMgr = GetUndoManager(); if( pTmpUndoMgr ) { sal_uInt16 nId = rReq.GetSlot(), nCnt = 1; const SfxItemSet* pArgs = rReq.GetArgs(); const SfxPoolItem* pItem; if( pArgs && SfxItemState::SET == pArgs->GetItemState( nId, false, &pItem )) nCnt = static_cast(pItem)->GetValue(); bool (SfxUndoManager::*fnDo)(); size_t nCount; if( SID_UNDO == rReq.GetSlot() ) { nCount = pTmpUndoMgr->GetUndoActionCount(); fnDo = &SfxUndoManager::Undo; } else { nCount = pTmpUndoMgr->GetRedoActionCount(); fnDo = &SfxUndoManager::Redo; } try { for( ; nCnt && nCount; --nCnt, --nCount ) (pTmpUndoMgr->*fnDo)(); } catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION("starmath"); } } Repaint(); UpdateText(); SfxViewFrame* pFrm = SfxViewFrame::GetFirst( this ); while( pFrm ) { SfxBindings& rBind = pFrm->GetBindings(); rBind.Invalidate(SID_UNDO); rBind.Invalidate(SID_REDO); rBind.Invalidate(SID_REPEAT); rBind.Invalidate(SID_CLEARHISTORY); pFrm = SfxViewFrame::GetNext( *pFrm, this ); } } break; } rReq.Done(); } void SmDocShell::GetState(SfxItemSet &rSet) { SfxWhichIter aIter(rSet); for (sal_uInt16 nWh = aIter.FirstWhich(); 0 != nWh; nWh = aIter.NextWhich()) { switch (nWh) { case SID_TEXTMODE: rSet.Put(SfxBoolItem(SID_TEXTMODE, GetFormat().IsTextmode())); break; case SID_DOCTEMPLATE : rSet.DisableItem(SID_DOCTEMPLATE); break; case SID_AUTO_REDRAW : { SmModule *pp = SM_MOD(); bool bRedraw = pp->GetConfig()->IsAutoRedraw(); rSet.Put(SfxBoolItem(SID_AUTO_REDRAW, bRedraw)); } break; case SID_MODIFYSTATUS: { sal_Unicode cMod = ' '; if (IsModified()) cMod = '*'; rSet.Put(SfxStringItem(SID_MODIFYSTATUS, OUString(cMod))); } break; case SID_TEXT: rSet.Put(SfxStringItem(SID_TEXT, GetText())); break; case SID_GRAPHIC_SM: //! very old (pre UNO) and ugly hack to invalidate the SmGraphicWidget. //! If mnModifyCount gets changed then the call below will implicitly notify //! SmGraphicController::StateChanged and there the window gets invalidated. //! Thus all the 'mnModifyCount++' before invalidating this slot. rSet.Put(SfxInt16Item(SID_GRAPHIC_SM, mnModifyCount)); break; case SID_UNDO: case SID_REDO: { SfxViewFrame* pFrm = SfxViewFrame::GetFirst( this ); if( pFrm ) pFrm->GetSlotState( nWh, nullptr, &rSet ); else rSet.DisableItem( nWh ); } break; case SID_GETUNDOSTRINGS: case SID_GETREDOSTRINGS: { SfxUndoManager* pTmpUndoMgr = GetUndoManager(); if( pTmpUndoMgr ) { OUString(SfxUndoManager::*fnGetComment)( size_t, bool const ) const; size_t nCount; if( SID_GETUNDOSTRINGS == nWh ) { nCount = pTmpUndoMgr->GetUndoActionCount(); fnGetComment = &SfxUndoManager::GetUndoActionComment; } else { nCount = pTmpUndoMgr->GetRedoActionCount(); fnGetComment = &SfxUndoManager::GetRedoActionComment; } if (nCount) { OUStringBuffer aBuf; for (size_t n = 0; n < nCount; ++n) { aBuf.append((pTmpUndoMgr->*fnGetComment)( n, SfxUndoManager::TopLevel )); aBuf.append('\n'); } SfxStringListItem aItem( nWh ); aItem.SetString( aBuf.makeStringAndClear() ); rSet.Put( aItem ); } } else rSet.DisableItem( nWh ); } break; } } } SfxUndoManager *SmDocShell::GetUndoManager() { if (!mpEditEngine) GetEditEngine(); return &mpEditEngine->GetUndoManager(); } void SmDocShell::SaveSymbols() { SmModule *pp = SM_MOD(); pp->GetSymbolManager().Save(); } void SmDocShell::Draw(OutputDevice *pDevice, const JobSetup &, sal_uInt16 /*nAspect*/) { pDevice->IntersectClipRegion(GetVisArea()); Point atmppoint; DrawFormula(*pDevice, atmppoint); } SfxItemPool& SmDocShell::GetPool() { return SfxGetpApp()->GetPool(); } void SmDocShell::SetVisArea(const tools::Rectangle & rVisArea) { tools::Rectangle aNewRect(rVisArea); aNewRect.SetPos(Point()); if (aNewRect.IsWidthEmpty()) aNewRect.SetRight( 2000 ); if (aNewRect.IsHeightEmpty()) aNewRect.SetBottom( 1000 ); bool bIsEnabled = IsEnableSetModified(); if ( bIsEnabled ) EnableSetModified( false ); //TODO/LATER: it's unclear how this interacts with the SFX code // If outplace editing, then don't resize the OutplaceWindow. But the // ObjectShell has to resize. bool bUnLockFrame; if( GetCreateMode() == SfxObjectCreateMode::EMBEDDED && !IsInPlaceActive() && GetFrame() ) { GetFrame()->LockAdjustPosSizePixel(); bUnLockFrame = true; } else bUnLockFrame = false; SfxObjectShell::SetVisArea( aNewRect ); if( bUnLockFrame ) GetFrame()->UnlockAdjustPosSizePixel(); if ( bIsEnabled ) EnableSetModified( bIsEnabled ); } void SmDocShell::FillClass(SvGlobalName* pClassName, SotClipboardFormatId* pFormat, OUString* pFullTypeName, sal_Int32 nFileFormat, bool bTemplate /* = false */) const { if (nFileFormat == SOFFICE_FILEFORMAT_60 ) { *pClassName = SvGlobalName(SO3_SM_CLASSID_60); *pFormat = SotClipboardFormatId::STARMATH_60; *pFullTypeName = SmResId(STR_MATH_DOCUMENT_FULLTYPE_CURRENT); } else if (nFileFormat == SOFFICE_FILEFORMAT_8 ) { *pClassName = SvGlobalName(SO3_SM_CLASSID_60); *pFormat = bTemplate ? SotClipboardFormatId::STARMATH_8_TEMPLATE : SotClipboardFormatId::STARMATH_8; *pFullTypeName = SmResId(STR_MATH_DOCUMENT_FULLTYPE_CURRENT); } } void SmDocShell::SetModified(bool bModified) { if( IsEnableSetModified() ) { SfxObjectShell::SetModified( bModified ); Broadcast(SfxHint(SfxHintId::DocChanged)); } } bool SmDocShell::WriteAsMathType3( SfxMedium& rMedium ) { OUStringBuffer aTextAsBuffer(maText); MathType aEquation(aTextAsBuffer, mpTree.get()); return aEquation.ConvertFromStarMath( rMedium ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po30
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po18
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office.po30
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/en-ZA/reportdesign/messages.po904
-rw-r--r--source/en-ZA/sc/messages.po15738
-rw-r--r--source/en-ZA/sccomp/messages.po30
-rw-r--r--source/en-ZA/scp2/source/ooo.po18
-rw-r--r--source/en-ZA/sd/messages.po5560
-rw-r--r--source/en-ZA/sfx2/messages.po3094
-rw-r--r--source/en-ZA/starmath/messages.po1298
-rw-r--r--source/en-ZA/svtools/messages.po1581
-rw-r--r--source/en-ZA/svx/messages.po5136
-rw-r--r--source/en-ZA/sw/messages.po14397
-rw-r--r--source/en-ZA/uui/messages.po458
-rw-r--r--source/en-ZA/vcl/messages.po1142
-rw-r--r--source/en-ZA/writerperfect/messages.po74
-rw-r--r--source/en-ZA/xmlsecurity/messages.po252
45 files changed, 32821 insertions, 31742 deletions
diff --git a/source/en-ZA/avmedia/messages.po b/source/en-ZA/avmedia/messages.po
index 818e4077311..b43316fff35 100644
--- a/source/en-ZA/avmedia/messages.po
+++ b/source/en-ZA/avmedia/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:47+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,41 +74,51 @@ msgid "Scaled"
msgstr "Scaled"
#: strings.hrc:37
+msgctxt "AVMEDIA_STR_VOLUME"
+msgid "Volume"
+msgstr ""
+
+#: strings.hrc:38
+msgctxt "AVMEDIA_STR_POSITION"
+msgid "Position"
+msgstr ""
+
+#: strings.hrc:39
msgctxt "AVMEDIA_STR_MEDIAPLAYER"
msgid "Media Player"
msgstr "Media Player"
-#: strings.hrc:38
+#: strings.hrc:40
msgctxt "AVMEDIA_MEDIA_PATH"
msgid "Media Path"
msgstr ""
-#: strings.hrc:39
+#: strings.hrc:41
msgctxt "AVMEDIA_MEDIA_PATH_DEFAULT"
msgid "No Media Selected"
msgstr ""
-#: strings.hrc:40
+#: strings.hrc:42
msgctxt "AVMEDIA_STR_INSERTMEDIA_DLG"
msgid "Insert Audio or Video"
msgstr ""
-#: strings.hrc:41
+#: strings.hrc:43
msgctxt "AVMEDIA_STR_OPENMEDIA_DLG"
msgid "Open Audio or Video"
msgstr ""
-#: strings.hrc:42
+#: strings.hrc:44
msgctxt "AVMEDIA_STR_ALL_MEDIAFILES"
msgid "All audio and video files"
msgstr ""
-#: strings.hrc:43
+#: strings.hrc:45
msgctxt "AVMEDIA_STR_ALL_FILES"
msgid "All files"
msgstr "All files"
-#: strings.hrc:44
+#: strings.hrc:46
msgctxt "AVMEDIA_STR_ERR_URL"
msgid "The format of the selected file is not supported."
msgstr "The format of the selected file is not supported."
diff --git a/source/en-ZA/basctl/messages.po b/source/en-ZA/basctl/messages.po
index 68e6b36b432..93e2213e593 100644
--- a/source/en-ZA/basctl/messages.po
+++ b/source/en-ZA/basctl/messages.po
@@ -1,9 +1,9 @@
-#. extracted from basctl/uiconfig/basicide/ui
+#. extracted from basctl/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,330 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: basicmacrodialog.ui:9
-msgctxt "basicmacrodialog|BasicMacroDialog"
-msgid "%PRODUCTNAME Basic Macros"
-msgstr "%PRODUCTNAME Basic Macros"
-
-#: basicmacrodialog.ui:25
-msgctxt "basicmacrodialog|run"
-msgid "Run"
-msgstr ""
-
-#: basicmacrodialog.ui:124
-#, fuzzy
-msgctxt "basicmacrodialog|existingmacrosft"
-msgid "Existing Macros In:"
-msgstr "Existing macros ~in:"
-
-#: basicmacrodialog.ui:178
-#, fuzzy
-msgctxt "basicmacrodialog|macrofromft"
-msgid "Macro From"
-msgstr "Macro ~from"
-
-#: basicmacrodialog.ui:194
-#, fuzzy
-msgctxt "basicmacrodialog|macrotoft"
-msgid "Save Macro In"
-msgstr "Save m~acro in"
-
-#: basicmacrodialog.ui:243
-#, fuzzy
-msgctxt "basicmacrodialog|libraryft1"
-msgid "Macro Name"
-msgstr "Macro name"
-
-#: basicmacrodialog.ui:265
-msgctxt "basicmacrodialog|assign"
-msgid "Assign..."
-msgstr ""
-
-#: basicmacrodialog.ui:278
-msgctxt "basicmacrodialog|edit"
-msgid "Edit"
-msgstr ""
-
-#: basicmacrodialog.ui:305
-msgctxt "basicmacrodialog|organize"
-msgid "Organizer..."
-msgstr ""
-
-#: basicmacrodialog.ui:318
-msgctxt "basicmacrodialog|newlibrary"
-msgid "New Library"
-msgstr ""
-
-#: basicmacrodialog.ui:331
-msgctxt "basicmacrodialog|newmodule"
-msgid "New Module"
-msgstr ""
-
-#: breakpointmenus.ui:12
-msgctxt "breakpointmenus|manage"
-msgid "Manage Breakpoints..."
-msgstr ""
-
-#: breakpointmenus.ui:23
-msgctxt "breakpointmenus|active"
-msgid "_Active"
-msgstr ""
-
-#: breakpointmenus.ui:37
-msgctxt "breakpointmenus|properties"
-msgid "_Properties..."
-msgstr ""
-
-#: defaultlanguage.ui:9
-msgctxt "defaultlanguage|DefaultLanguageDialog"
-msgid "Set Default User Interface Language"
-msgstr ""
-
-#: defaultlanguage.ui:93
-msgctxt "defaultlanguage|defaultlabel"
-msgid "Default language:"
-msgstr ""
-
-#: defaultlanguage.ui:135
-msgctxt "defaultlanguage|checkedlabel"
-msgid "Available languages:"
-msgstr ""
-
-#: defaultlanguage.ui:155
-msgctxt "defaultlanguage|defined"
-msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
-msgstr ""
-
-#: defaultlanguage.ui:170
-msgctxt "defaultlanguage|added"
-msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
-msgstr ""
-
-#: defaultlanguage.ui:184
-msgctxt "defaultlanguage|alttitle"
-msgid "Add User Interface Languages"
-msgstr ""
-
-#: deletelangdialog.ui:8
-msgctxt "deletelangdialog|DeleteLangDialog"
-msgid "Delete Language Resources"
-msgstr ""
-
-#: deletelangdialog.ui:14
-msgctxt "deletelangdialog|DeleteLangDialog"
-msgid "Do you want to delete the resources of the selected language(s)?"
-msgstr ""
-
-#: deletelangdialog.ui:15
-msgctxt "deletelangdialog|DeleteLangDialog"
-msgid "You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted."
-msgstr ""
-
-#: dialogpage.ui:30
-msgctxt "dialogpage|label1"
-msgid "Dialog:"
-msgstr ""
-
-#: dialogpage.ui:84
-msgctxt "dialogpage|newmodule"
-msgid "_New..."
-msgstr ""
-
-#: dialogpage.ui:99
-msgctxt "dialogpage|newdialog"
-msgid "_New..."
-msgstr ""
-
-#: dialogpage.ui:130
-msgctxt "dialogpage|password"
-msgid "_Password..."
-msgstr ""
-
-#: dialogpage.ui:144
-msgctxt "dialogpage|import"
-msgid "_Import..."
-msgstr ""
-
-#: dialogpage.ui:158
-msgctxt "dialogpage|export"
-msgid "_Export..."
-msgstr ""
-
-#: exportdialog.ui:8
-msgctxt "exportdialog|ExportDialog"
-msgid "Export Basic library"
-msgstr ""
-
-#: exportdialog.ui:83
-msgctxt "exportdialog|extension"
-msgid "Export as _extension"
-msgstr ""
-
-#: exportdialog.ui:100
-msgctxt "exportdialog|basic"
-msgid "Export as BASIC library"
-msgstr ""
-
-#: gotolinedialog.ui:8
-msgctxt "gotolinedialog|GotoLineDialog"
-msgid "Go to Line"
-msgstr ""
-
-#: gotolinedialog.ui:85
-msgctxt "gotolinedialog|area"
-msgid "_Line number:"
-msgstr ""
-
-#: importlibdialog.ui:9
-msgctxt "importlibdialog|ImportLibDialog"
-msgid "Import Libraries"
-msgstr ""
-
-#: importlibdialog.ui:98
-msgctxt "importlibdialog|ref"
-msgid "Insert as reference (read-only)"
-msgstr ""
-
-#: importlibdialog.ui:113
-msgctxt "importlibdialog|replace"
-msgid "Replace existing libraries"
-msgstr ""
-
-#: importlibdialog.ui:134
-msgctxt "importlibdialog|label1"
-msgid "Options"
-msgstr ""
-
-#: libpage.ui:31
-msgctxt "libpage|label1"
-msgid "L_ocation:"
-msgstr ""
-
-#: libpage.ui:70
-msgctxt "libpage|lingudictsft"
-msgid "_Library:"
-msgstr ""
-
-#: libpage.ui:124
-msgctxt "libpage|password"
-msgid "_Password..."
-msgstr ""
-
-#: libpage.ui:138
-msgctxt "libpage|new"
-msgid "_New..."
-msgstr ""
-
-#: libpage.ui:153
-msgctxt "libpage|import"
-msgid "_Import..."
-msgstr ""
-
-#: libpage.ui:168
-msgctxt "libpage|export"
-msgid "_Export..."
-msgstr ""
-
-#: managebreakpoints.ui:9
-msgctxt "managebreakpoints|ManageBreakpointsDialog"
-msgid "Manage Breakpoints"
-msgstr ""
-
-#: managebreakpoints.ui:129
-msgctxt "managebreakpoints|active"
-msgid "Active"
-msgstr ""
-
-#: managebreakpoints.ui:182
-msgctxt "managebreakpoints|label2"
-msgid "Pass count:"
-msgstr ""
-
-#: managebreakpoints.ui:205
-msgctxt "managebreakpoints|label1"
-msgid "Breakpoints"
-msgstr ""
-
-#: managelanguages.ui:8
-msgctxt "managelanguages|ManageLanguagesDialog"
-msgid "Manage User Interface Languages [$1]"
-msgstr ""
-
-#: managelanguages.ui:69
-msgctxt "managelanguages|label1"
-msgid "Present languages:"
-msgstr ""
-
-#: managelanguages.ui:83
-msgctxt "managelanguages|label2"
-msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
-msgstr ""
-
-#: managelanguages.ui:108
-msgctxt "managelanguages|add"
-msgid "Add..."
-msgstr ""
-
-#: managelanguages.ui:136
-msgctxt "managelanguages|default"
-msgid "Default"
-msgstr ""
-
-#: modulepage.ui:30
-msgctxt "modulepage|label1"
-msgid "M_odule:"
-msgstr ""
-
-#: modulepage.ui:84
-msgctxt "modulepage|newmodule"
-msgid "_New..."
-msgstr ""
-
-#: modulepage.ui:99
-msgctxt "modulepage|newdialog"
-msgid "_New..."
-msgstr ""
-
-#: modulepage.ui:130
-msgctxt "modulepage|password"
-msgid "_Password..."
-msgstr ""
-
-#: modulepage.ui:144
-msgctxt "modulepage|import"
-msgid "_Import..."
-msgstr ""
-
-#: modulepage.ui:158
-msgctxt "modulepage|export"
-msgid "_Export..."
-msgstr ""
-
-#: newlibdialog.ui:84
-msgctxt "newlibdialog|area"
-msgid "_Name:"
-msgstr ""
-
-#: organizedialog.ui:8
-msgctxt "organizedialog|OrganizeDialog"
-msgid "%PRODUCTNAME Basic Macro Organizer"
-msgstr ""
-
-#: organizedialog.ui:72
-msgctxt "organizedialog|modules"
-msgid "Modules"
-msgstr ""
-
-#: organizedialog.ui:85
-msgctxt "organizedialog|dialogs"
-msgid "Dialogs"
-msgstr ""
-
-#: organizedialog.ui:99
-msgctxt "organizedialog|libraries"
-msgid "Libraries"
-msgstr ""
-
#: strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
msgid "<All>"
@@ -828,3 +504,327 @@ msgstr "Export as BASIC library"
msgctxt "RID_STR_PACKAGE_BUNDLE"
msgid "Extension"
msgstr "Extension"
+
+#: basicmacrodialog.ui:9
+msgctxt "basicmacrodialog|BasicMacroDialog"
+msgid "%PRODUCTNAME Basic Macros"
+msgstr "%PRODUCTNAME Basic Macros"
+
+#: basicmacrodialog.ui:25
+msgctxt "basicmacrodialog|run"
+msgid "Run"
+msgstr ""
+
+#: basicmacrodialog.ui:124
+#, fuzzy
+msgctxt "basicmacrodialog|existingmacrosft"
+msgid "Existing Macros In:"
+msgstr "Existing macros ~in:"
+
+#: basicmacrodialog.ui:178
+#, fuzzy
+msgctxt "basicmacrodialog|macrofromft"
+msgid "Macro From"
+msgstr "Macro ~from"
+
+#: basicmacrodialog.ui:194
+#, fuzzy
+msgctxt "basicmacrodialog|macrotoft"
+msgid "Save Macro In"
+msgstr "Save m~acro in"
+
+#: basicmacrodialog.ui:243
+#, fuzzy
+msgctxt "basicmacrodialog|libraryft1"
+msgid "Macro Name"
+msgstr "Macro name"
+
+#: basicmacrodialog.ui:265
+msgctxt "basicmacrodialog|assign"
+msgid "Assign..."
+msgstr ""
+
+#: basicmacrodialog.ui:278
+msgctxt "basicmacrodialog|edit"
+msgid "Edit"
+msgstr ""
+
+#: basicmacrodialog.ui:305
+msgctxt "basicmacrodialog|organize"
+msgid "Organizer..."
+msgstr ""
+
+#: basicmacrodialog.ui:318
+msgctxt "basicmacrodialog|newlibrary"
+msgid "New Library"
+msgstr ""
+
+#: basicmacrodialog.ui:331
+msgctxt "basicmacrodialog|newmodule"
+msgid "New Module"
+msgstr ""
+
+#: breakpointmenus.ui:12
+msgctxt "breakpointmenus|manage"
+msgid "Manage Breakpoints..."
+msgstr ""
+
+#: breakpointmenus.ui:23
+msgctxt "breakpointmenus|active"
+msgid "_Active"
+msgstr ""
+
+#: breakpointmenus.ui:37
+msgctxt "breakpointmenus|properties"
+msgid "_Properties..."
+msgstr ""
+
+#: defaultlanguage.ui:9
+msgctxt "defaultlanguage|DefaultLanguageDialog"
+msgid "Set Default User Interface Language"
+msgstr ""
+
+#: defaultlanguage.ui:93
+msgctxt "defaultlanguage|defaultlabel"
+msgid "Default language:"
+msgstr ""
+
+#: defaultlanguage.ui:135
+msgctxt "defaultlanguage|checkedlabel"
+msgid "Available languages:"
+msgstr ""
+
+#: defaultlanguage.ui:155
+msgctxt "defaultlanguage|defined"
+msgid "Select a language to define the default user interface language. All currently present strings will be assigned to the resources created for the selected language."
+msgstr ""
+
+#: defaultlanguage.ui:170
+msgctxt "defaultlanguage|added"
+msgid "Select languages to be added. Resources for these languages will be created in the library. Strings of the current default user interface language will be copied to these new resources by default."
+msgstr ""
+
+#: defaultlanguage.ui:184
+msgctxt "defaultlanguage|alttitle"
+msgid "Add User Interface Languages"
+msgstr ""
+
+#: deletelangdialog.ui:8
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid "Delete Language Resources"
+msgstr ""
+
+#: deletelangdialog.ui:14
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid "Do you want to delete the resources of the selected language(s)?"
+msgstr ""
+
+#: deletelangdialog.ui:15
+msgctxt "deletelangdialog|DeleteLangDialog"
+msgid "You are about to delete the resources for the selected language(s). All user interface strings for this language(s) will be deleted."
+msgstr ""
+
+#: dialogpage.ui:30
+msgctxt "dialogpage|label1"
+msgid "Dialog:"
+msgstr ""
+
+#: dialogpage.ui:84
+msgctxt "dialogpage|newmodule"
+msgid "_New..."
+msgstr ""
+
+#: dialogpage.ui:99
+msgctxt "dialogpage|newdialog"
+msgid "_New..."
+msgstr ""
+
+#: dialogpage.ui:130
+msgctxt "dialogpage|password"
+msgid "_Password..."
+msgstr ""
+
+#: dialogpage.ui:144
+msgctxt "dialogpage|import"
+msgid "_Import..."
+msgstr ""
+
+#: dialogpage.ui:158
+msgctxt "dialogpage|export"
+msgid "_Export..."
+msgstr ""
+
+#: exportdialog.ui:8
+msgctxt "exportdialog|ExportDialog"
+msgid "Export Basic library"
+msgstr ""
+
+#: exportdialog.ui:83
+msgctxt "exportdialog|extension"
+msgid "Export as _extension"
+msgstr ""
+
+#: exportdialog.ui:100
+msgctxt "exportdialog|basic"
+msgid "Export as BASIC library"
+msgstr ""
+
+#: gotolinedialog.ui:8
+msgctxt "gotolinedialog|GotoLineDialog"
+msgid "Go to Line"
+msgstr ""
+
+#: gotolinedialog.ui:85
+msgctxt "gotolinedialog|area"
+msgid "_Line number:"
+msgstr ""
+
+#: importlibdialog.ui:9
+msgctxt "importlibdialog|ImportLibDialog"
+msgid "Import Libraries"
+msgstr ""
+
+#: importlibdialog.ui:98
+msgctxt "importlibdialog|ref"
+msgid "Insert as reference (read-only)"
+msgstr ""
+
+#: importlibdialog.ui:113
+msgctxt "importlibdialog|replace"
+msgid "Replace existing libraries"
+msgstr ""
+
+#: importlibdialog.ui:134
+msgctxt "importlibdialog|label1"
+msgid "Options"
+msgstr ""
+
+#: libpage.ui:31
+msgctxt "libpage|label1"
+msgid "L_ocation:"
+msgstr ""
+
+#: libpage.ui:70
+msgctxt "libpage|lingudictsft"
+msgid "_Library:"
+msgstr ""
+
+#: libpage.ui:124
+msgctxt "libpage|password"
+msgid "_Password..."
+msgstr ""
+
+#: libpage.ui:138
+msgctxt "libpage|new"
+msgid "_New..."
+msgstr ""
+
+#: libpage.ui:153
+msgctxt "libpage|import"
+msgid "_Import..."
+msgstr ""
+
+#: libpage.ui:168
+msgctxt "libpage|export"
+msgid "_Export..."
+msgstr ""
+
+#: managebreakpoints.ui:9
+msgctxt "managebreakpoints|ManageBreakpointsDialog"
+msgid "Manage Breakpoints"
+msgstr ""
+
+#: managebreakpoints.ui:129
+msgctxt "managebreakpoints|active"
+msgid "Active"
+msgstr ""
+
+#: managebreakpoints.ui:182
+msgctxt "managebreakpoints|label2"
+msgid "Pass count:"
+msgstr ""
+
+#: managebreakpoints.ui:205
+msgctxt "managebreakpoints|label1"
+msgid "Breakpoints"
+msgstr ""
+
+#: managelanguages.ui:8
+msgctxt "managelanguages|ManageLanguagesDialog"
+msgid "Manage User Interface Languages [$1]"
+msgstr ""
+
+#: managelanguages.ui:69
+msgctxt "managelanguages|label1"
+msgid "Present languages:"
+msgstr ""
+
+#: managelanguages.ui:83
+msgctxt "managelanguages|label2"
+msgid "The default language is used if no localization for a user interface locale is present. Furthermore all strings from the default language are copied to resources of newly added languages."
+msgstr ""
+
+#: managelanguages.ui:108
+msgctxt "managelanguages|add"
+msgid "Add..."
+msgstr ""
+
+#: managelanguages.ui:136
+msgctxt "managelanguages|default"
+msgid "Default"
+msgstr ""
+
+#: modulepage.ui:30
+msgctxt "modulepage|label1"
+msgid "M_odule:"
+msgstr ""
+
+#: modulepage.ui:84
+msgctxt "modulepage|newmodule"
+msgid "_New..."
+msgstr ""
+
+#: modulepage.ui:99
+msgctxt "modulepage|newdialog"
+msgid "_New..."
+msgstr ""
+
+#: modulepage.ui:130
+msgctxt "modulepage|password"
+msgid "_Password..."
+msgstr ""
+
+#: modulepage.ui:144
+msgctxt "modulepage|import"
+msgid "_Import..."
+msgstr ""
+
+#: modulepage.ui:158
+msgctxt "modulepage|export"
+msgid "_Export..."
+msgstr ""
+
+#: newlibdialog.ui:84
+msgctxt "newlibdialog|area"
+msgid "_Name:"
+msgstr ""
+
+#: organizedialog.ui:8
+msgctxt "organizedialog|OrganizeDialog"
+msgid "%PRODUCTNAME Basic Macro Organizer"
+msgstr ""
+
+#: organizedialog.ui:78
+msgctxt "organizedialog|modules"
+msgid "Modules"
+msgstr ""
+
+#: organizedialog.ui:100
+msgctxt "organizedialog|dialogs"
+msgid "Dialogs"
+msgstr ""
+
+#: organizedialog.ui:123
+msgctxt "organizedialog|libraries"
+msgid "Libraries"
+msgstr ""
diff --git a/source/en-ZA/chart2/messages.po b/source/en-ZA/chart2/messages.po
index 25c43aefa3e..c8a36b1006f 100644
--- a/source/en-ZA/chart2/messages.po
+++ b/source/en-ZA/chart2/messages.po
@@ -1,9 +1,9 @@
-#. extracted from chart2/uiconfig/ui
+#. extracted from chart2/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:47+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,6 +13,858 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+#: strings.hrc:24
+msgctxt "STR_DLG_CHART_WIZARD"
+msgid "Chart Wizard"
+msgstr "Chart Wizard"
+
+#: strings.hrc:25
+msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES"
+msgid "Smooth Lines"
+msgstr "Smooth Lines"
+
+#: strings.hrc:26
+msgctxt "STR_DLG_STEPPED_LINE_PROPERTIES"
+msgid "Stepped Lines"
+msgstr ""
+
+#: strings.hrc:27
+msgctxt "STR_PAGE_CHARTTYPE"
+msgid "Chart Type"
+msgstr "Chart Type"
+
+#: strings.hrc:28
+msgctxt "STR_PAGE_DATA_RANGE"
+msgid "Data Range"
+msgstr "Data Range"
+
+#: strings.hrc:29
+msgctxt "STR_PAGE_CHART_ELEMENTS"
+msgid "Chart Elements"
+msgstr "Chart Elements"
+
+#: strings.hrc:30
+msgctxt "STR_PAGE_LINE"
+msgid "Line"
+msgstr "Line"
+
+#: strings.hrc:31
+msgctxt "STR_PAGE_BORDER"
+msgid "Borders"
+msgstr "Borders"
+
+#: strings.hrc:32
+msgctxt "STR_PAGE_AREA"
+msgid "Area"
+msgstr "Area"
+
+#: strings.hrc:33
+msgctxt "STR_PAGE_TRANSPARENCY"
+msgid "Transparency"
+msgstr "Transparency"
+
+#: strings.hrc:34
+msgctxt "STR_PAGE_FONT"
+msgid "Font"
+msgstr "Font"
+
+#: strings.hrc:35
+msgctxt "STR_PAGE_FONT_EFFECTS"
+msgid "Font Effects"
+msgstr "Font Effects"
+
+#: strings.hrc:36
+msgctxt "STR_PAGE_NUMBERS"
+msgid "Numbers"
+msgstr "Numbers"
+
+#: strings.hrc:37
+msgctxt "STR_PAGE_POSITION"
+msgid "Position"
+msgstr "Position"
+
+#: strings.hrc:38
+msgctxt "STR_PAGE_LAYOUT"
+msgid "Layout"
+msgstr "Layout"
+
+#: strings.hrc:39
+msgctxt "STR_PAGE_OPTIONS"
+msgid "Options"
+msgstr "Options"
+
+#: strings.hrc:40
+msgctxt "STR_PAGE_SCALE"
+msgid "Scale"
+msgstr "Scale"
+
+#: strings.hrc:41
+msgctxt "STR_PAGE_POSITIONING"
+msgid "Positioning"
+msgstr "Positioning"
+
+#: strings.hrc:42
+msgctxt "STR_PAGE_TRENDLINE_TYPE"
+msgid "Type"
+msgstr "Type"
+
+#: strings.hrc:43
+#, fuzzy
+msgctxt "STR_PAGE_XERROR_BARS"
+msgid "X Error Bars"
+msgstr "Y Error Bars"
+
+#: strings.hrc:44
+#, fuzzy
+msgctxt "STR_PAGE_YERROR_BARS"
+msgid "Y Error Bars"
+msgstr "Y Error Bars"
+
+#: strings.hrc:45
+msgctxt "STR_PAGE_ALIGNMENT"
+msgid "Alignment"
+msgstr "Alignment"
+
+#: strings.hrc:46
+msgctxt "STR_PAGE_PERSPECTIVE"
+msgid "Perspective"
+msgstr "Perspective"
+
+#: strings.hrc:47
+msgctxt "STR_PAGE_APPEARANCE"
+msgid "Appearance"
+msgstr "Appearance"
+
+#: strings.hrc:48
+msgctxt "STR_PAGE_ILLUMINATION"
+msgid "Illumination"
+msgstr "Illumination"
+
+#: strings.hrc:49
+msgctxt "STR_PAGE_ASIAN"
+msgid "Asian Typography"
+msgstr "Asian Typography"
+
+#: strings.hrc:50
+#, c-format
+msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS"
+msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+msgstr "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
+
+#: strings.hrc:51
+msgctxt "STR_OBJECT_AXIS"
+msgid "Axis"
+msgstr "Axis"
+
+#: strings.hrc:52
+msgctxt "STR_OBJECT_AXIS_X"
+msgid "X Axis"
+msgstr "X Axis"
+
+#: strings.hrc:53
+msgctxt "STR_OBJECT_AXIS_Y"
+msgid "Y Axis"
+msgstr "Y Axis"
+
+#: strings.hrc:54
+msgctxt "STR_OBJECT_AXIS_Z"
+msgid "Z Axis"
+msgstr "Z Axis"
+
+#: strings.hrc:55
+msgctxt "STR_OBJECT_SECONDARY_X_AXIS"
+msgid "Secondary X Axis"
+msgstr "Secondary X Axis"
+
+#: strings.hrc:56
+msgctxt "STR_OBJECT_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis"
+msgstr "Secondary Y Axis"
+
+#: strings.hrc:57
+msgctxt "STR_OBJECT_AXES"
+msgid "Axes"
+msgstr "Axes"
+
+#: strings.hrc:58
+msgctxt "STR_OBJECT_GRIDS"
+msgid "Grids"
+msgstr "Grids"
+
+#: strings.hrc:59
+msgctxt "STR_OBJECT_GRID"
+msgid "Grid"
+msgstr "Grid"
+
+#: strings.hrc:60
+msgctxt "STR_OBJECT_GRID_MAJOR_X"
+msgid "X Axis Major Grid"
+msgstr "X Axis Major Grid"
+
+#: strings.hrc:61
+msgctxt "STR_OBJECT_GRID_MAJOR_Y"
+msgid "Y Axis Major Grid"
+msgstr "Y Axis Major Grid"
+
+#: strings.hrc:62
+msgctxt "STR_OBJECT_GRID_MAJOR_Z"
+msgid "Z Axis Major Grid"
+msgstr "Z Axis Major Grid"
+
+#: strings.hrc:63
+msgctxt "STR_OBJECT_GRID_MINOR_X"
+msgid "X Axis Minor Grid"
+msgstr "X Axis Minor Grid"
+
+#: strings.hrc:64
+msgctxt "STR_OBJECT_GRID_MINOR_Y"
+msgid "Y Axis Minor Grid"
+msgstr "Y Axis Minor Grid"
+
+#: strings.hrc:65
+msgctxt "STR_OBJECT_GRID_MINOR_Z"
+msgid "Z Axis Minor Grid"
+msgstr "Z Axis Minor Grid"
+
+#: strings.hrc:66
+msgctxt "STR_OBJECT_LEGEND"
+msgid "Legend"
+msgstr "Legend"
+
+#: strings.hrc:67
+msgctxt "STR_OBJECT_TITLE"
+msgid "Title"
+msgstr "Title"
+
+#: strings.hrc:68
+msgctxt "STR_OBJECT_TITLES"
+msgid "Titles"
+msgstr "Titles"
+
+#: strings.hrc:69
+msgctxt "STR_OBJECT_TITLE_MAIN"
+msgid "Main Title"
+msgstr "Main Title"
+
+#: strings.hrc:70
+msgctxt "STR_OBJECT_TITLE_SUB"
+msgid "Subtitle"
+msgstr "Subtitle"
+
+#: strings.hrc:71
+msgctxt "STR_OBJECT_TITLE_X_AXIS"
+msgid "X Axis Title"
+msgstr "X Axis Title"
+
+#: strings.hrc:72
+msgctxt "STR_OBJECT_TITLE_Y_AXIS"
+msgid "Y Axis Title"
+msgstr "Y Axis Title"
+
+#: strings.hrc:73
+msgctxt "STR_OBJECT_TITLE_Z_AXIS"
+msgid "Z Axis Title"
+msgstr "Z Axis Title"
+
+#: strings.hrc:74
+msgctxt "STR_OBJECT_TITLE_SECONDARY_X_AXIS"
+msgid "Secondary X Axis Title"
+msgstr "Secondary X Axis Title"
+
+#: strings.hrc:75
+msgctxt "STR_OBJECT_TITLE_SECONDARY_Y_AXIS"
+msgid "Secondary Y Axis Title"
+msgstr "Secondary Y Axis Title"
+
+#: strings.hrc:76
+msgctxt "STR_OBJECT_LABEL"
+msgid "Label"
+msgstr "Label"
+
+#: strings.hrc:77
+msgctxt "STR_OBJECT_DATALABELS"
+msgid "Data Labels"
+msgstr "Data Labels"
+
+#: strings.hrc:78
+msgctxt "STR_OBJECT_DATAPOINT"
+msgid "Data Point"
+msgstr "Data Point"
+
+#: strings.hrc:79
+msgctxt "STR_OBJECT_DATAPOINTS"
+msgid "Data Points"
+msgstr "Data Points"
+
+#: strings.hrc:80
+msgctxt "STR_OBJECT_LEGEND_SYMBOL"
+msgid "Legend Key"
+msgstr "Legend Key"
+
+#: strings.hrc:81
+msgctxt "STR_OBJECT_DATASERIES"
+msgid "Data Series"
+msgstr "Data Series"
+
+#: strings.hrc:82
+msgctxt "STR_OBJECT_DATASERIES_PLURAL"
+msgid "Data Series"
+msgstr "Data Series"
+
+#: strings.hrc:83
+msgctxt "STR_OBJECT_CURVE"
+msgid "Trend Line"
+msgstr "Trend Line"
+
+#: strings.hrc:84
+msgctxt "STR_OBJECT_CURVES"
+msgid "Trend Lines"
+msgstr "Trend Lines"
+
+#: strings.hrc:85
+msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS"
+msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
+msgstr "Trend line %FORMULA with accuracy R² = %RSQUARED"
+
+#: strings.hrc:86
+msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS"
+msgid "Moving average trend line with period = %PERIOD"
+msgstr ""
+
+#: strings.hrc:87
+msgctxt "STR_OBJECT_AVERAGE_LINE"
+msgid "Mean Value Line"
+msgstr "Mean Value Line"
+
+#: strings.hrc:88
+msgctxt "STR_OBJECT_CURVE_EQUATION"
+msgid "Equation"
+msgstr "Equation"
+
+#: strings.hrc:89
+#, fuzzy
+msgctxt "STR_OBJECT_ERROR_BARS_X"
+msgid "X Error Bars"
+msgstr "Y Error Bars"
+
+#: strings.hrc:90
+#, fuzzy
+msgctxt "STR_OBJECT_ERROR_BARS_Y"
+msgid "Y Error Bars"
+msgstr "Y Error Bars"
+
+#: strings.hrc:91
+#, fuzzy
+msgctxt "STR_OBJECT_ERROR_BARS_Z"
+msgid "Z Error Bars"
+msgstr "Y Error Bars"
+
+#: strings.hrc:92
+msgctxt "STR_OBJECT_STOCK_LOSS"
+msgid "Stock Loss"
+msgstr "Stock Loss"
+
+#: strings.hrc:93
+msgctxt "STR_OBJECT_STOCK_GAIN"
+msgid "Stock Gain"
+msgstr "Stock Gain"
+
+#: strings.hrc:94
+msgctxt "STR_OBJECT_PAGE"
+msgid "Chart Area"
+msgstr "Chart Area"
+
+#: strings.hrc:95
+msgctxt "STR_OBJECT_DIAGRAM"
+msgid "Chart"
+msgstr "Chart"
+
+#: strings.hrc:96
+msgctxt "STR_OBJECT_DIAGRAM_WALL"
+msgid "Chart Wall"
+msgstr "Chart Wall"
+
+#: strings.hrc:97
+msgctxt "STR_OBJECT_DIAGRAM_FLOOR"
+msgid "Chart Floor"
+msgstr "Chart Floor"
+
+#: strings.hrc:98
+msgctxt "STR_OBJECT_SHAPE"
+msgid "Drawing Object"
+msgstr "Drawing Object"
+
+#: strings.hrc:99
+#, c-format
+msgctxt "STR_TIP_DATASERIES"
+msgid "Data Series '%SERIESNAME'"
+msgstr "Data Series '%SERIESNAME'"
+
+#: strings.hrc:100
+msgctxt "STR_TIP_DATAPOINT_INDEX"
+msgid "Data Point %POINTNUMBER"
+msgstr "Data Point %POINTNUMBER"
+
+#: strings.hrc:101
+msgctxt "STR_TIP_DATAPOINT_VALUES"
+msgid "Values: %POINTVALUES"
+msgstr "Values: %POINTVALUES"
+
+#: strings.hrc:102
+msgctxt "STR_TIP_DATAPOINT"
+msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+
+#: strings.hrc:103
+msgctxt "STR_STATUS_DATAPOINT_MARKED"
+msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+
+#: strings.hrc:104
+msgctxt "STR_STATUS_OBJECT_MARKED"
+msgid "%OBJECTNAME selected"
+msgstr "%OBJECTNAME selected"
+
+#: strings.hrc:105
+msgctxt "STR_STATUS_PIE_SEGMENT_EXPLODED"
+msgid "Pie exploded by %PERCENTVALUE percent"
+msgstr "Pie exploded by %PERCENTVALUE percent"
+
+#: strings.hrc:106
+msgctxt "STR_OBJECT_FOR_SERIES"
+msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
+msgstr "%OBJECTNAME for Data Series '%SERIESNAME'"
+
+#: strings.hrc:107
+msgctxt "STR_OBJECT_FOR_ALL_SERIES"
+msgid "%OBJECTNAME for all Data Series"
+msgstr "%OBJECTNAME for all Data Series"
+
+#: strings.hrc:108
+msgctxt "STR_ACTION_EDIT_CHARTTYPE"
+msgid "Edit chart type"
+msgstr "Edit chart type"
+
+#: strings.hrc:109
+msgctxt "STR_ACTION_EDIT_DATA_RANGES"
+msgid "Edit data ranges"
+msgstr "Edit data ranges"
+
+#: strings.hrc:110
+msgctxt "STR_ACTION_EDIT_3D_VIEW"
+msgid "Edit 3D view"
+msgstr "Edit 3D view"
+
+#: strings.hrc:111
+msgctxt "STR_ACTION_EDIT_CHART_DATA"
+msgid "Edit chart data"
+msgstr "Edit chart data"
+
+#: strings.hrc:112
+msgctxt "STR_ACTION_TOGGLE_LEGEND"
+msgid "Legend on/off"
+msgstr "Legend on/off"
+
+#: strings.hrc:113
+msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
+msgid "Horizontal grid major/major&minor/off"
+msgstr ""
+
+#: strings.hrc:114
+msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL"
+msgid "Vertical grid major/major&minor/off"
+msgstr ""
+
+#: strings.hrc:115
+msgctxt "STR_ACTION_SCALE_TEXT"
+msgid "Scale Text"
+msgstr "Scale Text"
+
+#: strings.hrc:116
+msgctxt "STR_ACTION_REARRANGE_CHART"
+msgid "Automatic Layout"
+msgstr "Automatic Layout"
+
+#: strings.hrc:117
+msgctxt "STR_ACTION_NOTPOSSIBLE"
+msgid "This function cannot be completed with the selected objects."
+msgstr "This function cannot be completed with the selected objects."
+
+#: strings.hrc:118
+msgctxt "STR_ACTION_EDIT_TEXT"
+msgid "Edit text"
+msgstr "Edit text"
+
+#: strings.hrc:119
+#, c-format
+msgctxt "STR_COLUMN_LABEL"
+msgid "Column %COLUMNNUMBER"
+msgstr "Column %COLUMNNUMBER"
+
+#: strings.hrc:120
+msgctxt "STR_ROW_LABEL"
+msgid "Row %ROWNUMBER"
+msgstr "Row %ROWNUMBER"
+
+#: strings.hrc:121
+msgctxt "STR_DATA_ROLE_LABEL"
+msgid "Name"
+msgstr "Name"
+
+#: strings.hrc:122
+msgctxt "STR_DATA_ROLE_X"
+msgid "X-Values"
+msgstr "X-Values"
+
+#: strings.hrc:123
+msgctxt "STR_DATA_ROLE_Y"
+msgid "Y-Values"
+msgstr "Y-Values"
+
+#: strings.hrc:124
+msgctxt "STR_DATA_ROLE_SIZE"
+msgid "Bubble Sizes"
+msgstr "Bubble Sizes"
+
+#: strings.hrc:125
+msgctxt "STR_DATA_ROLE_X_ERROR"
+msgid "X-Error-Bars"
+msgstr "X-Error-Bars"
+
+#: strings.hrc:126
+msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE"
+msgid "Positive X-Error-Bars"
+msgstr "Positive X-Error-Bars"
+
+#: strings.hrc:127
+msgctxt "STR_DATA_ROLE_X_ERROR_NEGATIVE"
+msgid "Negative X-Error-Bars"
+msgstr "Negative X-Error-Bars"
+
+#: strings.hrc:128
+msgctxt "STR_DATA_ROLE_Y_ERROR"
+msgid "Y-Error-Bars"
+msgstr "Y-Error-Bars"
+
+#: strings.hrc:129
+msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE"
+msgid "Positive Y-Error-Bars"
+msgstr "Positive Y-Error-Bars"
+
+#: strings.hrc:130
+msgctxt "STR_DATA_ROLE_Y_ERROR_NEGATIVE"
+msgid "Negative Y-Error-Bars"
+msgstr "Negative Y-Error-Bars"
+
+#: strings.hrc:131
+msgctxt "STR_DATA_ROLE_FIRST"
+msgid "Open Values"
+msgstr "Open Values"
+
+#: strings.hrc:132
+msgctxt "STR_DATA_ROLE_LAST"
+msgid "Close Values"
+msgstr "Close Values"
+
+#: strings.hrc:133
+msgctxt "STR_DATA_ROLE_MIN"
+msgid "Low Values"
+msgstr "Low Values"
+
+#: strings.hrc:134
+msgctxt "STR_DATA_ROLE_MAX"
+msgid "High Values"
+msgstr "High Values"
+
+#: strings.hrc:135
+msgctxt "STR_DATA_ROLE_CATEGORIES"
+msgid "Categories"
+msgstr "Categories"
+
+#: strings.hrc:136
+msgctxt "STR_DATA_UNNAMED_SERIES"
+msgid "Unnamed Series"
+msgstr "Unnamed Series"
+
+#: strings.hrc:137
+msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
+msgid "Unnamed Series %NUMBER"
+msgstr "Unnamed Series %NUMBER"
+
+#: strings.hrc:138
+msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
+msgid "Select Range for %VALUETYPE of %SERIESNAME"
+msgstr "Select Range for %VALUETYPE of %SERIESNAME"
+
+#: strings.hrc:139
+msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES"
+msgid "Select Range for Categories"
+msgstr "Select Range for Categories"
+
+#: strings.hrc:140
+msgctxt "STR_DATA_SELECT_RANGE_FOR_DATALABELS"
+msgid "Select Range for data labels"
+msgstr "Select Range for data labels"
+
+#: strings.hrc:141
+msgctxt "STR_DATA_EDITOR_INCORRECT_INPUT"
+msgid ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialog?"
+msgstr ""
+"Your last input is incorrect.\n"
+"Ignore this change and close the dialogue?"
+
+#: strings.hrc:142
+msgctxt "STR_TEXT_DIRECTION_LTR"
+msgid "Left-to-right"
+msgstr "Left-to-right"
+
+#: strings.hrc:143
+msgctxt "STR_TEXT_DIRECTION_RTL"
+msgid "Right-to-left"
+msgstr "Right-to-left"
+
+#: strings.hrc:144
+msgctxt "STR_TEXT_DIRECTION_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: strings.hrc:145
+msgctxt "STR_PROPERTY_ROLE_FILLCOLOR"
+msgid "Fill Color"
+msgstr ""
+
+#: strings.hrc:146
+msgctxt "STR_PROPERTY_ROLE_BORDERCOLOR"
+msgid "Border Color"
+msgstr ""
+
+#: strings.hrc:148
+msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
+msgid "From Data Table"
+msgstr "From Data Table"
+
+#: strings.hrc:149
+msgctxt "STR_REGRESSION_LINEAR"
+msgid "Linear"
+msgstr ""
+
+#: strings.hrc:150
+msgctxt "STR_REGRESSION_LOG"
+msgid "Logarithmic"
+msgstr ""
+
+#: strings.hrc:151
+msgctxt "STR_REGRESSION_EXP"
+msgid "Exponential"
+msgstr ""
+
+#: strings.hrc:152
+msgctxt "STR_REGRESSION_POWER"
+msgid "Power"
+msgstr ""
+
+#: strings.hrc:153
+msgctxt "STR_REGRESSION_POLYNOMIAL"
+msgid "Polynomial"
+msgstr ""
+
+#: strings.hrc:154
+msgctxt "STR_REGRESSION_MOVING_AVERAGE"
+msgid "Moving average"
+msgstr ""
+
+#: strings.hrc:155
+msgctxt "STR_REGRESSION_MEAN"
+msgid "Mean"
+msgstr ""
+
+#: strings.hrc:157
+msgctxt "STR_TYPE_COLUMN"
+msgid "Column"
+msgstr "Column"
+
+#: strings.hrc:158
+msgctxt "STR_TYPE_BAR"
+msgid "Bar"
+msgstr "Bar"
+
+#: strings.hrc:159
+msgctxt "STR_TYPE_AREA"
+msgid "Area"
+msgstr "Area"
+
+#: strings.hrc:160
+msgctxt "STR_TYPE_PIE"
+msgid "Pie"
+msgstr "Pie"
+
+#: strings.hrc:161
+msgctxt "STR_PIE_EXPLODED"
+msgid "Exploded Pie Chart"
+msgstr "Exploded Pie Chart"
+
+#: strings.hrc:162
+msgctxt "STR_DONUT_EXPLODED"
+msgid "Exploded Donut Chart"
+msgstr "Exploded Donut Chart"
+
+#: strings.hrc:163
+msgctxt "STR_DONUT"
+msgid "Donut"
+msgstr "Donut"
+
+#: strings.hrc:164
+msgctxt "STR_TYPE_LINE"
+msgid "Line"
+msgstr "Line"
+
+#: strings.hrc:165
+msgctxt "STR_TYPE_XY"
+msgid "XY (Scatter)"
+msgstr "XY (Scatter)"
+
+#: strings.hrc:166
+msgctxt "STR_POINTS_AND_LINES"
+msgid "Points and Lines"
+msgstr "Points and Lines"
+
+#: strings.hrc:167
+msgctxt "STR_POINTS_ONLY"
+msgid "Points Only"
+msgstr "Points Only"
+
+#: strings.hrc:168
+msgctxt "STR_LINES_ONLY"
+msgid "Lines Only"
+msgstr "Lines Only"
+
+#: strings.hrc:169
+msgctxt "STR_LINES_3D"
+msgid "3D Lines"
+msgstr "3D Lines"
+
+#: strings.hrc:170
+msgctxt "STR_TYPE_COMBI_COLUMN_LINE"
+msgid "Column and Line"
+msgstr "Column and Line"
+
+#: strings.hrc:171
+msgctxt "STR_LINE_COLUMN"
+msgid "Columns and Lines"
+msgstr "Columns and Lines"
+
+#: strings.hrc:172
+msgctxt "STR_LINE_STACKEDCOLUMN"
+msgid "Stacked Columns and Lines"
+msgstr "Stacked Columns and Lines"
+
+#: strings.hrc:173
+msgctxt "STR_TYPE_NET"
+msgid "Net"
+msgstr "Net"
+
+#: strings.hrc:174
+msgctxt "STR_TYPE_STOCK"
+msgid "Stock"
+msgstr "Stock"
+
+#: strings.hrc:175
+msgctxt "STR_STOCK_1"
+msgid "Stock Chart 1"
+msgstr "Stock Chart 1"
+
+#: strings.hrc:176
+msgctxt "STR_STOCK_2"
+msgid "Stock Chart 2"
+msgstr "Stock Chart 2"
+
+#: strings.hrc:177
+msgctxt "STR_STOCK_3"
+msgid "Stock Chart 3"
+msgstr "Stock Chart 3"
+
+#: strings.hrc:178
+msgctxt "STR_STOCK_4"
+msgid "Stock Chart 4"
+msgstr "Stock Chart 4"
+
+#: strings.hrc:179
+msgctxt "STR_NORMAL"
+msgid "Normal"
+msgstr "Normal"
+
+#: strings.hrc:180
+msgctxt "STR_STACKED"
+msgid "Stacked"
+msgstr "Stacked"
+
+#: strings.hrc:181
+msgctxt "STR_PERCENT"
+msgid "Percent Stacked"
+msgstr "Percent Stacked"
+
+#: strings.hrc:182
+msgctxt "STR_DEEP"
+msgid "Deep"
+msgstr "Deep"
+
+#: strings.hrc:183
+msgctxt "STR_FILLED"
+msgid "Filled"
+msgstr "Filled"
+
+#: strings.hrc:184
+msgctxt "STR_TYPE_BUBBLE"
+msgid "Bubble"
+msgstr "Bubble"
+
+#: strings.hrc:185
+msgctxt "STR_BUBBLE_1"
+msgid "Bubble Chart"
+msgstr "Bubble Chart"
+
+#: strings.hrc:186
+msgctxt "STR_TYPE_GL3D_BAR"
+msgid "GL3D Bar"
+msgstr ""
+
+#: strings.hrc:187
+msgctxt "STR_GL3D_BAR"
+msgid "GL3D Bar Chart"
+msgstr ""
+
+#: strings.hrc:189
+msgctxt "STR_INVALID_NUMBER"
+msgid "Numbers are required. Check your input."
+msgstr "Numbers are required. Check your input."
+
+#: strings.hrc:190
+msgctxt "STR_STEP_GT_ZERO"
+msgid "The major interval requires a positive number. Check your input."
+msgstr "The major interval requires a positive number. Check your input."
+
+#: strings.hrc:191
+msgctxt "STR_BAD_LOGARITHM"
+msgid "The logarithmic scale requires positive numbers. Check your input."
+msgstr "The logarithmic scale requires positive numbers. Check your input."
+
+#: strings.hrc:192
+msgctxt "STR_MIN_GREATER_MAX"
+msgid "The minimum must be lower than the maximum. Check your input."
+msgstr "The minimum must be lower than the maximum. Check your input."
+
+#: strings.hrc:193
+msgctxt "STR_INVALID_INTERVALS"
+msgid "The major interval needs to be greater than the minor interval. Check your input."
+msgstr "The major interval needs to be greater than the minor interval. Check your input."
+
+#: strings.hrc:194
+msgctxt "STR_INVALID_TIME_UNIT"
+msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
+msgstr "The major and minor interval need to be greater or equal to the resolution. Check your input."
+
#: 3dviewdialog.ui:8
msgctxt "3dviewdialog|3DViewDialog"
msgid "3D View"
@@ -23,17 +875,17 @@ msgctxt "chardialog|CharDialog"
msgid "Character"
msgstr ""
-#: chardialog.ui:99
+#: chardialog.ui:105
msgctxt "chardialog|font"
msgid "Font"
msgstr ""
-#: chardialog.ui:112
+#: chardialog.ui:127
msgctxt "chardialog|fonteffects"
msgid "Font Effects"
msgstr ""
-#: chardialog.ui:126
+#: chardialog.ui:150
msgctxt "chardialog|position"
msgid "Position"
msgstr ""
@@ -558,22 +1410,22 @@ msgctxt "paradialog|ParagraphDialog"
msgid "Paragraph"
msgstr ""
-#: paradialog.ui:99
+#: paradialog.ui:105
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr ""
-#: paradialog.ui:113
+#: paradialog.ui:127
msgctxt "paradialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr ""
-#: paradialog.ui:127
+#: paradialog.ui:151
msgctxt "paradialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#: paradialog.ui:141
+#: paradialog.ui:174
msgctxt "paradialog|labelTP_TABULATOR"
msgid "Tabs"
msgstr ""
@@ -1734,32 +2586,32 @@ msgctxt "tp_LegendPosition|left"
msgid "_Left"
msgstr ""
-#: tp_LegendPosition.ui:49
+#: tp_LegendPosition.ui:48
msgctxt "tp_LegendPosition|right"
msgid "_Right"
msgstr ""
-#: tp_LegendPosition.ui:67
+#: tp_LegendPosition.ui:66
msgctxt "tp_LegendPosition|top"
msgid "_Top"
msgstr ""
-#: tp_LegendPosition.ui:85
+#: tp_LegendPosition.ui:84
msgctxt "tp_LegendPosition|bottom"
msgid "_Bottom"
msgstr ""
-#: tp_LegendPosition.ui:110
+#: tp_LegendPosition.ui:109
msgctxt "tp_LegendPosition|TXT_POSITION"
msgid "Position"
msgstr ""
-#: tp_LegendPosition.ui:145
+#: tp_LegendPosition.ui:144
msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR"
msgid "Te_xt direction"
msgstr ""
-#: tp_LegendPosition.ui:174
+#: tp_LegendPosition.ui:173
msgctxt "tp_LegendPosition|TXT_ORIENTATION"
msgid "Text Orientation"
msgstr ""
@@ -2284,855 +3136,3 @@ msgstr ""
msgctxt "wizelementspage|label2"
msgid "Display Grids"
msgstr ""
-
-#: strings.hrc:24
-msgctxt "STR_DLG_CHART_WIZARD"
-msgid "Chart Wizard"
-msgstr "Chart Wizard"
-
-#: strings.hrc:25
-msgctxt "STR_DLG_SMOOTH_LINE_PROPERTIES"
-msgid "Smooth Lines"
-msgstr "Smooth Lines"
-
-#: strings.hrc:26
-msgctxt "STR_DLG_STEPPED_LINE_PROPERTIES"
-msgid "Stepped Lines"
-msgstr ""
-
-#: strings.hrc:27
-msgctxt "STR_PAGE_CHARTTYPE"
-msgid "Chart Type"
-msgstr "Chart Type"
-
-#: strings.hrc:28
-msgctxt "STR_PAGE_DATA_RANGE"
-msgid "Data Range"
-msgstr "Data Range"
-
-#: strings.hrc:29
-msgctxt "STR_PAGE_CHART_ELEMENTS"
-msgid "Chart Elements"
-msgstr "Chart Elements"
-
-#: strings.hrc:30
-msgctxt "STR_PAGE_LINE"
-msgid "Line"
-msgstr "Line"
-
-#: strings.hrc:31
-msgctxt "STR_PAGE_BORDER"
-msgid "Borders"
-msgstr "Borders"
-
-#: strings.hrc:32
-msgctxt "STR_PAGE_AREA"
-msgid "Area"
-msgstr "Area"
-
-#: strings.hrc:33
-msgctxt "STR_PAGE_TRANSPARENCY"
-msgid "Transparency"
-msgstr "Transparency"
-
-#: strings.hrc:34
-msgctxt "STR_PAGE_FONT"
-msgid "Font"
-msgstr "Font"
-
-#: strings.hrc:35
-msgctxt "STR_PAGE_FONT_EFFECTS"
-msgid "Font Effects"
-msgstr "Font Effects"
-
-#: strings.hrc:36
-msgctxt "STR_PAGE_NUMBERS"
-msgid "Numbers"
-msgstr "Numbers"
-
-#: strings.hrc:37
-msgctxt "STR_PAGE_POSITION"
-msgid "Position"
-msgstr "Position"
-
-#: strings.hrc:38
-msgctxt "STR_PAGE_LAYOUT"
-msgid "Layout"
-msgstr "Layout"
-
-#: strings.hrc:39
-msgctxt "STR_PAGE_OPTIONS"
-msgid "Options"
-msgstr "Options"
-
-#: strings.hrc:40
-msgctxt "STR_PAGE_SCALE"
-msgid "Scale"
-msgstr "Scale"
-
-#: strings.hrc:41
-msgctxt "STR_PAGE_POSITIONING"
-msgid "Positioning"
-msgstr "Positioning"
-
-#: strings.hrc:42
-msgctxt "STR_PAGE_TRENDLINE_TYPE"
-msgid "Type"
-msgstr "Type"
-
-#: strings.hrc:43
-#, fuzzy
-msgctxt "STR_PAGE_XERROR_BARS"
-msgid "X Error Bars"
-msgstr "Y Error Bars"
-
-#: strings.hrc:44
-#, fuzzy
-msgctxt "STR_PAGE_YERROR_BARS"
-msgid "Y Error Bars"
-msgstr "Y Error Bars"
-
-#: strings.hrc:45
-msgctxt "STR_PAGE_ALIGNMENT"
-msgid "Alignment"
-msgstr "Alignment"
-
-#: strings.hrc:46
-msgctxt "STR_PAGE_PERSPECTIVE"
-msgid "Perspective"
-msgstr "Perspective"
-
-#: strings.hrc:47
-msgctxt "STR_PAGE_APPEARANCE"
-msgid "Appearance"
-msgstr "Appearance"
-
-#: strings.hrc:48
-msgctxt "STR_PAGE_ILLUMINATION"
-msgid "Illumination"
-msgstr "Illumination"
-
-#: strings.hrc:49
-msgctxt "STR_PAGE_ASIAN"
-msgid "Asian Typography"
-msgstr "Asian Typography"
-
-#: strings.hrc:50
-#, c-format
-msgctxt "STR_OBJECT_AVERAGE_LINE_WITH_PARAMETERS"
-msgid "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
-msgstr "Mean value line with value %AVERAGE_VALUE and standard deviation %STD_DEVIATION"
-
-#: strings.hrc:51
-msgctxt "STR_OBJECT_AXIS"
-msgid "Axis"
-msgstr "Axis"
-
-#: strings.hrc:52
-msgctxt "STR_OBJECT_AXIS_X"
-msgid "X Axis"
-msgstr "X Axis"
-
-#: strings.hrc:53
-msgctxt "STR_OBJECT_AXIS_Y"
-msgid "Y Axis"
-msgstr "Y Axis"
-
-#: strings.hrc:54
-msgctxt "STR_OBJECT_AXIS_Z"
-msgid "Z Axis"
-msgstr "Z Axis"
-
-#: strings.hrc:55
-msgctxt "STR_OBJECT_SECONDARY_X_AXIS"
-msgid "Secondary X Axis"
-msgstr "Secondary X Axis"
-
-#: strings.hrc:56
-msgctxt "STR_OBJECT_SECONDARY_Y_AXIS"
-msgid "Secondary Y Axis"
-msgstr "Secondary Y Axis"
-
-#: strings.hrc:57
-msgctxt "STR_OBJECT_AXES"
-msgid "Axes"
-msgstr "Axes"
-
-#: strings.hrc:58
-msgctxt "STR_OBJECT_GRIDS"
-msgid "Grids"
-msgstr "Grids"
-
-#: strings.hrc:59
-msgctxt "STR_OBJECT_GRID"
-msgid "Grid"
-msgstr "Grid"
-
-#: strings.hrc:60
-msgctxt "STR_OBJECT_GRID_MAJOR_X"
-msgid "X Axis Major Grid"
-msgstr "X Axis Major Grid"
-
-#: strings.hrc:61
-msgctxt "STR_OBJECT_GRID_MAJOR_Y"
-msgid "Y Axis Major Grid"
-msgstr "Y Axis Major Grid"
-
-#: strings.hrc:62
-msgctxt "STR_OBJECT_GRID_MAJOR_Z"
-msgid "Z Axis Major Grid"
-msgstr "Z Axis Major Grid"
-
-#: strings.hrc:63
-msgctxt "STR_OBJECT_GRID_MINOR_X"
-msgid "X Axis Minor Grid"
-msgstr "X Axis Minor Grid"
-
-#: strings.hrc:64
-msgctxt "STR_OBJECT_GRID_MINOR_Y"
-msgid "Y Axis Minor Grid"
-msgstr "Y Axis Minor Grid"
-
-#: strings.hrc:65
-msgctxt "STR_OBJECT_GRID_MINOR_Z"
-msgid "Z Axis Minor Grid"
-msgstr "Z Axis Minor Grid"
-
-#: strings.hrc:66
-msgctxt "STR_OBJECT_LEGEND"
-msgid "Legend"
-msgstr "Legend"
-
-#: strings.hrc:67
-msgctxt "STR_OBJECT_TITLE"
-msgid "Title"
-msgstr "Title"
-
-#: strings.hrc:68
-msgctxt "STR_OBJECT_TITLES"
-msgid "Titles"
-msgstr "Titles"
-
-#: strings.hrc:69
-msgctxt "STR_OBJECT_TITLE_MAIN"
-msgid "Main Title"
-msgstr "Main Title"
-
-#: strings.hrc:70
-msgctxt "STR_OBJECT_TITLE_SUB"
-msgid "Subtitle"
-msgstr "Subtitle"
-
-#: strings.hrc:71
-msgctxt "STR_OBJECT_TITLE_X_AXIS"
-msgid "X Axis Title"
-msgstr "X Axis Title"
-
-#: strings.hrc:72
-msgctxt "STR_OBJECT_TITLE_Y_AXIS"
-msgid "Y Axis Title"
-msgstr "Y Axis Title"
-
-#: strings.hrc:73
-msgctxt "STR_OBJECT_TITLE_Z_AXIS"
-msgid "Z Axis Title"
-msgstr "Z Axis Title"
-
-#: strings.hrc:74
-msgctxt "STR_OBJECT_TITLE_SECONDARY_X_AXIS"
-msgid "Secondary X Axis Title"
-msgstr "Secondary X Axis Title"
-
-#: strings.hrc:75
-msgctxt "STR_OBJECT_TITLE_SECONDARY_Y_AXIS"
-msgid "Secondary Y Axis Title"
-msgstr "Secondary Y Axis Title"
-
-#: strings.hrc:76
-msgctxt "STR_OBJECT_LABEL"
-msgid "Label"
-msgstr "Label"
-
-#: strings.hrc:77
-msgctxt "STR_OBJECT_DATALABELS"
-msgid "Data Labels"
-msgstr "Data Labels"
-
-#: strings.hrc:78
-msgctxt "STR_OBJECT_DATAPOINT"
-msgid "Data Point"
-msgstr "Data Point"
-
-#: strings.hrc:79
-msgctxt "STR_OBJECT_DATAPOINTS"
-msgid "Data Points"
-msgstr "Data Points"
-
-#: strings.hrc:80
-msgctxt "STR_OBJECT_LEGEND_SYMBOL"
-msgid "Legend Key"
-msgstr "Legend Key"
-
-#: strings.hrc:81
-msgctxt "STR_OBJECT_DATASERIES"
-msgid "Data Series"
-msgstr "Data Series"
-
-#: strings.hrc:82
-msgctxt "STR_OBJECT_DATASERIES_PLURAL"
-msgid "Data Series"
-msgstr "Data Series"
-
-#: strings.hrc:83
-msgctxt "STR_OBJECT_CURVE"
-msgid "Trend Line"
-msgstr "Trend Line"
-
-#: strings.hrc:84
-msgctxt "STR_OBJECT_CURVES"
-msgid "Trend Lines"
-msgstr "Trend Lines"
-
-#: strings.hrc:85
-msgctxt "STR_OBJECT_CURVE_WITH_PARAMETERS"
-msgid "Trend line %FORMULA with accuracy R² = %RSQUARED"
-msgstr "Trend line %FORMULA with accuracy R² = %RSQUARED"
-
-#: strings.hrc:86
-msgctxt "STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS"
-msgid "Moving average trend line with period = %PERIOD"
-msgstr ""
-
-#: strings.hrc:87
-msgctxt "STR_OBJECT_AVERAGE_LINE"
-msgid "Mean Value Line"
-msgstr "Mean Value Line"
-
-#: strings.hrc:88
-msgctxt "STR_OBJECT_CURVE_EQUATION"
-msgid "Equation"
-msgstr "Equation"
-
-#: strings.hrc:89
-#, fuzzy
-msgctxt "STR_OBJECT_ERROR_BARS_X"
-msgid "X Error Bars"
-msgstr "Y Error Bars"
-
-#: strings.hrc:90
-#, fuzzy
-msgctxt "STR_OBJECT_ERROR_BARS_Y"
-msgid "Y Error Bars"
-msgstr "Y Error Bars"
-
-#: strings.hrc:91
-#, fuzzy
-msgctxt "STR_OBJECT_ERROR_BARS_Z"
-msgid "Z Error Bars"
-msgstr "Y Error Bars"
-
-#: strings.hrc:92
-msgctxt "STR_OBJECT_STOCK_LOSS"
-msgid "Stock Loss"
-msgstr "Stock Loss"
-
-#: strings.hrc:93
-msgctxt "STR_OBJECT_STOCK_GAIN"
-msgid "Stock Gain"
-msgstr "Stock Gain"
-
-#: strings.hrc:94
-msgctxt "STR_OBJECT_PAGE"
-msgid "Chart Area"
-msgstr "Chart Area"
-
-#: strings.hrc:95
-msgctxt "STR_OBJECT_DIAGRAM"
-msgid "Chart"
-msgstr "Chart"
-
-#: strings.hrc:96
-msgctxt "STR_OBJECT_DIAGRAM_WALL"
-msgid "Chart Wall"
-msgstr "Chart Wall"
-
-#: strings.hrc:97
-msgctxt "STR_OBJECT_DIAGRAM_FLOOR"
-msgid "Chart Floor"
-msgstr "Chart Floor"
-
-#: strings.hrc:98
-msgctxt "STR_OBJECT_SHAPE"
-msgid "Drawing Object"
-msgstr "Drawing Object"
-
-#: strings.hrc:99
-#, c-format
-msgctxt "STR_TIP_DATASERIES"
-msgid "Data Series '%SERIESNAME'"
-msgstr "Data Series '%SERIESNAME'"
-
-#: strings.hrc:100
-msgctxt "STR_TIP_DATAPOINT_INDEX"
-msgid "Data Point %POINTNUMBER"
-msgstr "Data Point %POINTNUMBER"
-
-#: strings.hrc:101
-msgctxt "STR_TIP_DATAPOINT_VALUES"
-msgid "Values: %POINTVALUES"
-msgstr "Values: %POINTVALUES"
-
-#: strings.hrc:102
-msgctxt "STR_TIP_DATAPOINT"
-msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
-msgstr "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
-
-#: strings.hrc:103
-msgctxt "STR_STATUS_DATAPOINT_MARKED"
-msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
-msgstr "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
-
-#: strings.hrc:104
-msgctxt "STR_STATUS_OBJECT_MARKED"
-msgid "%OBJECTNAME selected"
-msgstr "%OBJECTNAME selected"
-
-#: strings.hrc:105
-msgctxt "STR_STATUS_PIE_SEGMENT_EXPLODED"
-msgid "Pie exploded by %PERCENTVALUE percent"
-msgstr "Pie exploded by %PERCENTVALUE percent"
-
-#: strings.hrc:106
-msgctxt "STR_OBJECT_FOR_SERIES"
-msgid "%OBJECTNAME for Data Series '%SERIESNAME'"
-msgstr "%OBJECTNAME for Data Series '%SERIESNAME'"
-
-#: strings.hrc:107
-msgctxt "STR_OBJECT_FOR_ALL_SERIES"
-msgid "%OBJECTNAME for all Data Series"
-msgstr "%OBJECTNAME for all Data Series"
-
-#: strings.hrc:108
-msgctxt "STR_ACTION_EDIT_CHARTTYPE"
-msgid "Edit chart type"
-msgstr "Edit chart type"
-
-#: strings.hrc:109
-msgctxt "STR_ACTION_EDIT_DATA_RANGES"
-msgid "Edit data ranges"
-msgstr "Edit data ranges"
-
-#: strings.hrc:110
-msgctxt "STR_ACTION_EDIT_3D_VIEW"
-msgid "Edit 3D view"
-msgstr "Edit 3D view"
-
-#: strings.hrc:111
-msgctxt "STR_ACTION_EDIT_CHART_DATA"
-msgid "Edit chart data"
-msgstr "Edit chart data"
-
-#: strings.hrc:112
-msgctxt "STR_ACTION_TOGGLE_LEGEND"
-msgid "Legend on/off"
-msgstr "Legend on/off"
-
-#: strings.hrc:113
-msgctxt "STR_ACTION_TOGGLE_GRID_HORZ"
-msgid "Horizontal grid major/major&minor/off"
-msgstr ""
-
-#: strings.hrc:114
-msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL"
-msgid "Vertical grid major/major&minor/off"
-msgstr ""
-
-#: strings.hrc:115
-msgctxt "STR_ACTION_SCALE_TEXT"
-msgid "Scale Text"
-msgstr "Scale Text"
-
-#: strings.hrc:116
-msgctxt "STR_ACTION_REARRANGE_CHART"
-msgid "Automatic Layout"
-msgstr "Automatic Layout"
-
-#: strings.hrc:117
-msgctxt "STR_ACTION_NOTPOSSIBLE"
-msgid "This function cannot be completed with the selected objects."
-msgstr "This function cannot be completed with the selected objects."
-
-#: strings.hrc:118
-msgctxt "STR_ACTION_EDIT_TEXT"
-msgid "Edit text"
-msgstr "Edit text"
-
-#: strings.hrc:119
-#, c-format
-msgctxt "STR_COLUMN_LABEL"
-msgid "Column %COLUMNNUMBER"
-msgstr "Column %COLUMNNUMBER"
-
-#: strings.hrc:120
-msgctxt "STR_ROW_LABEL"
-msgid "Row %ROWNUMBER"
-msgstr "Row %ROWNUMBER"
-
-#: strings.hrc:121
-msgctxt "STR_DATA_ROLE_LABEL"
-msgid "Name"
-msgstr "Name"
-
-#: strings.hrc:122
-msgctxt "STR_DATA_ROLE_X"
-msgid "X-Values"
-msgstr "X-Values"
-
-#: strings.hrc:123
-msgctxt "STR_DATA_ROLE_Y"
-msgid "Y-Values"
-msgstr "Y-Values"
-
-#: strings.hrc:124
-msgctxt "STR_DATA_ROLE_SIZE"
-msgid "Bubble Sizes"
-msgstr "Bubble Sizes"
-
-#: strings.hrc:125
-msgctxt "STR_DATA_ROLE_X_ERROR"
-msgid "X-Error-Bars"
-msgstr "X-Error-Bars"
-
-#: strings.hrc:126
-msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE"
-msgid "Positive X-Error-Bars"
-msgstr "Positive X-Error-Bars"
-
-#: strings.hrc:127
-msgctxt "STR_DATA_ROLE_X_ERROR_NEGATIVE"
-msgid "Negative X-Error-Bars"
-msgstr "Negative X-Error-Bars"
-
-#: strings.hrc:128
-msgctxt "STR_DATA_ROLE_Y_ERROR"
-msgid "Y-Error-Bars"
-msgstr "Y-Error-Bars"
-
-#: strings.hrc:129
-msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE"
-msgid "Positive Y-Error-Bars"
-msgstr "Positive Y-Error-Bars"
-
-#: strings.hrc:130
-msgctxt "STR_DATA_ROLE_Y_ERROR_NEGATIVE"
-msgid "Negative Y-Error-Bars"
-msgstr "Negative Y-Error-Bars"
-
-#: strings.hrc:131
-msgctxt "STR_DATA_ROLE_FIRST"
-msgid "Open Values"
-msgstr "Open Values"
-
-#: strings.hrc:132
-msgctxt "STR_DATA_ROLE_LAST"
-msgid "Close Values"
-msgstr "Close Values"
-
-#: strings.hrc:133
-msgctxt "STR_DATA_ROLE_MIN"
-msgid "Low Values"
-msgstr "Low Values"
-
-#: strings.hrc:134
-msgctxt "STR_DATA_ROLE_MAX"
-msgid "High Values"
-msgstr "High Values"
-
-#: strings.hrc:135
-msgctxt "STR_DATA_ROLE_CATEGORIES"
-msgid "Categories"
-msgstr "Categories"
-
-#: strings.hrc:136
-msgctxt "STR_DATA_UNNAMED_SERIES"
-msgid "Unnamed Series"
-msgstr "Unnamed Series"
-
-#: strings.hrc:137
-msgctxt "STR_DATA_UNNAMED_SERIES_WITH_INDEX"
-msgid "Unnamed Series %NUMBER"
-msgstr "Unnamed Series %NUMBER"
-
-#: strings.hrc:138
-msgctxt "STR_DATA_SELECT_RANGE_FOR_SERIES"
-msgid "Select Range for %VALUETYPE of %SERIESNAME"
-msgstr "Select Range for %VALUETYPE of %SERIESNAME"
-
-#: strings.hrc:139
-msgctxt "STR_DATA_SELECT_RANGE_FOR_CATEGORIES"
-msgid "Select Range for Categories"
-msgstr "Select Range for Categories"
-
-#: strings.hrc:140
-msgctxt "STR_DATA_SELECT_RANGE_FOR_DATALABELS"
-msgid "Select Range for data labels"
-msgstr "Select Range for data labels"
-
-#: strings.hrc:141
-msgctxt "STR_DATA_EDITOR_INCORRECT_INPUT"
-msgid ""
-"Your last input is incorrect.\n"
-"Ignore this change and close the dialog?"
-msgstr ""
-"Your last input is incorrect.\n"
-"Ignore this change and close the dialogue?"
-
-#: strings.hrc:142
-msgctxt "STR_TEXT_DIRECTION_LTR"
-msgid "Left-to-right"
-msgstr "Left-to-right"
-
-#: strings.hrc:143
-msgctxt "STR_TEXT_DIRECTION_RTL"
-msgid "Right-to-left"
-msgstr "Right-to-left"
-
-#: strings.hrc:144
-msgctxt "STR_TEXT_DIRECTION_SUPER"
-msgid "Use superordinate object settings"
-msgstr "Use superordinate object settings"
-
-#: strings.hrc:145
-msgctxt "STR_PROPERTY_ROLE_FILLCOLOR"
-msgid "Fill Color"
-msgstr ""
-
-#: strings.hrc:146
-msgctxt "STR_PROPERTY_ROLE_BORDERCOLOR"
-msgid "Border Color"
-msgstr ""
-
-#: strings.hrc:148
-msgctxt "STR_CONTROLTEXT_ERROR_BARS_FROM_DATA"
-msgid "From Data Table"
-msgstr "From Data Table"
-
-#: strings.hrc:149
-msgctxt "STR_REGRESSION_LINEAR"
-msgid "Linear"
-msgstr ""
-
-#: strings.hrc:150
-msgctxt "STR_REGRESSION_LOG"
-msgid "Logarithmic"
-msgstr ""
-
-#: strings.hrc:151
-msgctxt "STR_REGRESSION_EXP"
-msgid "Exponential"
-msgstr ""
-
-#: strings.hrc:152
-msgctxt "STR_REGRESSION_POWER"
-msgid "Power"
-msgstr ""
-
-#: strings.hrc:153
-msgctxt "STR_REGRESSION_POLYNOMIAL"
-msgid "Polynomial"
-msgstr ""
-
-#: strings.hrc:154
-msgctxt "STR_REGRESSION_MOVING_AVERAGE"
-msgid "Moving average"
-msgstr ""
-
-#: strings.hrc:155
-msgctxt "STR_REGRESSION_MEAN"
-msgid "Mean"
-msgstr ""
-
-#: strings.hrc:157
-msgctxt "STR_TYPE_COLUMN"
-msgid "Column"
-msgstr "Column"
-
-#: strings.hrc:158
-msgctxt "STR_TYPE_BAR"
-msgid "Bar"
-msgstr "Bar"
-
-#: strings.hrc:159
-msgctxt "STR_TYPE_AREA"
-msgid "Area"
-msgstr "Area"
-
-#: strings.hrc:160
-msgctxt "STR_TYPE_PIE"
-msgid "Pie"
-msgstr "Pie"
-
-#: strings.hrc:161
-msgctxt "STR_PIE_EXPLODED"
-msgid "Exploded Pie Chart"
-msgstr "Exploded Pie Chart"
-
-#: strings.hrc:162
-msgctxt "STR_DONUT_EXPLODED"
-msgid "Exploded Donut Chart"
-msgstr "Exploded Donut Chart"
-
-#: strings.hrc:163
-msgctxt "STR_DONUT"
-msgid "Donut"
-msgstr "Donut"
-
-#: strings.hrc:164
-msgctxt "STR_TYPE_LINE"
-msgid "Line"
-msgstr "Line"
-
-#: strings.hrc:165
-msgctxt "STR_TYPE_XY"
-msgid "XY (Scatter)"
-msgstr "XY (Scatter)"
-
-#: strings.hrc:166
-msgctxt "STR_POINTS_AND_LINES"
-msgid "Points and Lines"
-msgstr "Points and Lines"
-
-#: strings.hrc:167
-msgctxt "STR_POINTS_ONLY"
-msgid "Points Only"
-msgstr "Points Only"
-
-#: strings.hrc:168
-msgctxt "STR_LINES_ONLY"
-msgid "Lines Only"
-msgstr "Lines Only"
-
-#: strings.hrc:169
-msgctxt "STR_LINES_3D"
-msgid "3D Lines"
-msgstr "3D Lines"
-
-#: strings.hrc:170
-msgctxt "STR_TYPE_COMBI_COLUMN_LINE"
-msgid "Column and Line"
-msgstr "Column and Line"
-
-#: strings.hrc:171
-msgctxt "STR_LINE_COLUMN"
-msgid "Columns and Lines"
-msgstr "Columns and Lines"
-
-#: strings.hrc:172
-msgctxt "STR_LINE_STACKEDCOLUMN"
-msgid "Stacked Columns and Lines"
-msgstr "Stacked Columns and Lines"
-
-#: strings.hrc:173
-msgctxt "STR_TYPE_NET"
-msgid "Net"
-msgstr "Net"
-
-#: strings.hrc:174
-msgctxt "STR_TYPE_STOCK"
-msgid "Stock"
-msgstr "Stock"
-
-#: strings.hrc:175
-msgctxt "STR_STOCK_1"
-msgid "Stock Chart 1"
-msgstr "Stock Chart 1"
-
-#: strings.hrc:176
-msgctxt "STR_STOCK_2"
-msgid "Stock Chart 2"
-msgstr "Stock Chart 2"
-
-#: strings.hrc:177
-msgctxt "STR_STOCK_3"
-msgid "Stock Chart 3"
-msgstr "Stock Chart 3"
-
-#: strings.hrc:178
-msgctxt "STR_STOCK_4"
-msgid "Stock Chart 4"
-msgstr "Stock Chart 4"
-
-#: strings.hrc:179
-msgctxt "STR_NORMAL"
-msgid "Normal"
-msgstr "Normal"
-
-#: strings.hrc:180
-msgctxt "STR_STACKED"
-msgid "Stacked"
-msgstr "Stacked"
-
-#: strings.hrc:181
-msgctxt "STR_PERCENT"
-msgid "Percent Stacked"
-msgstr "Percent Stacked"
-
-#: strings.hrc:182
-msgctxt "STR_DEEP"
-msgid "Deep"
-msgstr "Deep"
-
-#: strings.hrc:183
-msgctxt "STR_FILLED"
-msgid "Filled"
-msgstr "Filled"
-
-#: strings.hrc:184
-msgctxt "STR_TYPE_BUBBLE"
-msgid "Bubble"
-msgstr "Bubble"
-
-#: strings.hrc:185
-msgctxt "STR_BUBBLE_1"
-msgid "Bubble Chart"
-msgstr "Bubble Chart"
-
-#: strings.hrc:186
-msgctxt "STR_TYPE_GL3D_BAR"
-msgid "GL3D Bar"
-msgstr ""
-
-#: strings.hrc:187
-msgctxt "STR_GL3D_BAR"
-msgid "GL3D Bar Chart"
-msgstr ""
-
-#: strings.hrc:189
-msgctxt "STR_INVALID_NUMBER"
-msgid "Numbers are required. Check your input."
-msgstr "Numbers are required. Check your input."
-
-#: strings.hrc:190
-msgctxt "STR_STEP_GT_ZERO"
-msgid "The major interval requires a positive number. Check your input."
-msgstr "The major interval requires a positive number. Check your input."
-
-#: strings.hrc:191
-msgctxt "STR_BAD_LOGARITHM"
-msgid "The logarithmic scale requires positive numbers. Check your input."
-msgstr "The logarithmic scale requires positive numbers. Check your input."
-
-#: strings.hrc:192
-msgctxt "STR_MIN_GREATER_MAX"
-msgid "The minimum must be lower than the maximum. Check your input."
-msgstr "The minimum must be lower than the maximum. Check your input."
-
-#: strings.hrc:193
-msgctxt "STR_INVALID_INTERVALS"
-msgid "The major interval needs to be greater than the minor interval. Check your input."
-msgstr "The major interval needs to be greater than the minor interval. Check your input."
-
-#: strings.hrc:194
-msgctxt "STR_INVALID_TIME_UNIT"
-msgid "The major and minor interval need to be greater or equal to the resolution. Check your input."
-msgstr "The major and minor interval need to be greater or equal to the resolution. Check your input."
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 4264d3272d8..6570dfc91fb 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -1,9 +1,9 @@
-#. extracted from cui/uiconfig/ui
+#. extracted from cui/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,6 +13,2095 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+#: personalization.hrc:31
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "LibreOffice"
+msgstr ""
+
+#: personalization.hrc:32
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Abstract"
+msgstr ""
+
+#: personalization.hrc:33
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Color"
+msgstr ""
+
+#: personalization.hrc:34
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Music"
+msgstr ""
+
+#: personalization.hrc:35
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Nature"
+msgstr ""
+
+#: personalization.hrc:36
+msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
+msgid "Solid"
+msgstr ""
+
+#: strings.hrc:24
+msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
+msgid "Configuration"
+msgstr "Configuration"
+
+#: strings.hrc:25
+msgctxt "RID_SVXSTR_KEY_WORK_PATH"
+msgid "My Documents"
+msgstr "My Documents"
+
+#: strings.hrc:26
+msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
+msgid "Images"
+msgstr ""
+
+#: strings.hrc:27
+msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
+msgid "Icons"
+msgstr "Icons"
+
+#: strings.hrc:28
+msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
+msgid "Palettes"
+msgstr "Palettes"
+
+#: strings.hrc:29
+msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
+msgid "Backups"
+msgstr "Backups"
+
+#: strings.hrc:30
+msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
+msgid "Modules"
+msgstr "Modules"
+
+#: strings.hrc:31
+msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
+msgid "Templates"
+msgstr "Templates"
+
+#: strings.hrc:32
+msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
+msgid "AutoText"
+msgstr "AutoText"
+
+#: strings.hrc:33
+#, fuzzy
+msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
+msgid "Dictionaries"
+msgstr "Dictionaries"
+
+#: strings.hrc:34
+msgctxt "RID_SVXSTR_KEY_HELP_DIR"
+msgid "Help"
+msgstr "Help"
+
+#: strings.hrc:35
+msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
+msgid "Gallery"
+msgstr "Gallery"
+
+#: strings.hrc:36
+msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
+msgid "Message Storage"
+msgstr "Message Storage"
+
+#: strings.hrc:37
+msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
+msgid "Temporary files"
+msgstr "Temporary files"
+
+#: strings.hrc:38
+msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
+msgid "Plug-ins"
+msgstr "Plug-ins"
+
+#: strings.hrc:39
+msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
+msgid "Folder Bookmarks"
+msgstr "Folder Bookmarks"
+
+#: strings.hrc:40
+msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
+msgid "Filters"
+msgstr "Filters"
+
+#: strings.hrc:41
+msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
+msgid "Add-ins"
+msgstr "Add-ins"
+
+#: strings.hrc:42
+msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
+msgid "User Configuration"
+msgstr "User Configuration"
+
+#: strings.hrc:43
+msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
+msgid "User-defined dictionaries"
+msgstr "User-defined dictionaries"
+
+#: strings.hrc:44
+msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
+msgid "Classification"
+msgstr ""
+
+#: strings.hrc:45
+msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
+
+#: strings.hrc:46
+msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
+msgid "Writing aids"
+msgstr "Writing aids"
+
+#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
+#: strings.hrc:48
+#, c-format
+msgctxt "RID_SVXSTR_NEW_MENU"
+msgid "New Menu %n"
+msgstr "New Menu %n"
+
+#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
+#: strings.hrc:50
+#, c-format
+msgctxt "RID_SVXSTR_NEW_TOOLBAR"
+msgid "New Toolbar %n"
+msgstr "New Toolbar %n"
+
+#: strings.hrc:51
+msgctxt "RID_SVXSTR_MOVE_MENU"
+msgid "Move Menu"
+msgstr "Move Menu"
+
+#: strings.hrc:52
+msgctxt "RID_SVXSTR_ADD_SUBMENU"
+msgid "Add Submenu"
+msgstr "Add Submenu"
+
+#: strings.hrc:53
+msgctxt "RID_SVXSTR_SUBMENU_NAME"
+msgid "Submenu name"
+msgstr "Submenu name"
+
+#: strings.hrc:54
+msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
+msgid "Are you sure to delete the image?"
+msgstr "Are you sure to delete the image?"
+
+#: strings.hrc:55
+msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
+msgid ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+msgstr ""
+"The icon %ICONNAME is already contained in the image list.\n"
+"Would you like to replace the existing icon?"
+
+#: strings.hrc:56
+msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
+msgid "Confirm Icon Replacement"
+msgstr "Confirm Icon Replacement"
+
+#: strings.hrc:57
+msgctxt "RID_SVXSTR_YESTOALL"
+msgid "Yes to All"
+msgstr "Yes to All"
+
+#: strings.hrc:58
+#, fuzzy
+msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
+msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+msgstr "There are no more commands on the toolbar. Do you want to delete the toolbar?"
+
+#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
+#. and will be replaced at runtime by the name of the selected application
+#. or document.
+#: strings.hrc:63
+msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
+msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
+msgstr ""
+
+#: strings.hrc:64
+msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
+msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
+msgstr ""
+
+#: strings.hrc:65
+#, fuzzy
+msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
+msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+msgstr "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
+
+#: strings.hrc:66
+msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
+msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
+msgstr ""
+
+#: strings.hrc:67
+msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
+msgid "Function is already included in this popup."
+msgstr "Function is already included in this popup."
+
+#: strings.hrc:68
+msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
+msgid "~New name"
+msgstr "~New name"
+
+#: strings.hrc:69
+msgctxt "RID_SVXSTR_RENAME_MENU"
+msgid "Rename Menu"
+msgstr "Rename Menu"
+
+#: strings.hrc:70
+msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
+msgid "Rename Toolbar"
+msgstr "Rename Toolbar"
+
+#: strings.hrc:72
+msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
+msgid "Close"
+msgstr "Close"
+
+#: strings.hrc:73
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
+msgid "Mouse over object"
+msgstr "Mouse over object"
+
+#: strings.hrc:74
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
+msgid "Trigger hyperlink"
+msgstr "Trigger hyperlink"
+
+#: strings.hrc:75
+msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
+msgid "Mouse leaves object"
+msgstr "Mouse leaves object"
+
+#: strings.hrc:76
+msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
+msgid "Please type in a valid file name."
+msgstr "Please type in a valid file name."
+
+#: strings.hrc:77
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP"
+msgid "Internet"
+msgstr "Internet"
+
+#: strings.hrc:78
+#, fuzzy
+msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
+msgid "This is where you create a hyperlink to a Web page or FTP server connection."
+msgstr "This is where you create a hyperlink to a Web page, FTP server or Telnet connection."
+
+#: strings.hrc:79
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP"
+msgid "Mail"
+msgstr ""
+
+#: strings.hrc:80
+msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
+msgid "This is where you create a hyperlink to an e-mail address."
+msgstr ""
+
+#: strings.hrc:81
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
+msgid "Document"
+msgstr "Document"
+
+#: strings.hrc:82
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
+msgid "This is where you create a hyperlink to an existing document or a target within a document."
+msgstr "This is where you create a hyperlink to an existing document or a target within a document."
+
+#: strings.hrc:83
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
+msgid "New Document"
+msgstr "New Document"
+
+#: strings.hrc:84
+msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
+msgid "This is where you create a new document to which the new link points."
+msgstr "This is where you create a new document to which the new link points."
+
+#: strings.hrc:85
+msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
+msgid "Button"
+msgstr "Button"
+
+#: strings.hrc:86
+msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
+msgid "Text"
+msgstr "Text"
+
+#: strings.hrc:87
+msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
+msgid "The file already exists. Overwrite?"
+msgstr "The file already exists. Overwrite?"
+
+#: strings.hrc:89
+msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
+msgid "No alternatives found."
+msgstr "No alternatives found."
+
+#: strings.hrc:90
+msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
+msgid "Select File for Floating Frame"
+msgstr "Select File for Floating Frame"
+
+#: strings.hrc:91
+msgctxt "RID_SVXSTR_ALLFUNCTIONS"
+msgid "All categories"
+msgstr ""
+
+#: strings.hrc:92
+msgctxt "RID_SVXSTR_MYMACROS"
+msgid "My Macros"
+msgstr "My Macros"
+
+#: strings.hrc:93
+msgctxt "RID_SVXSTR_PRODMACROS"
+msgid "%PRODUCTNAME Macros"
+msgstr "%PRODUCTNAME Macros"
+
+#: strings.hrc:94
+msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
+msgid "Add Commands"
+msgstr "Add Commands"
+
+#: strings.hrc:95
+#, fuzzy
+msgctxt "RID_SVXSTR_SELECTOR_RUN"
+msgid "Run"
+msgstr "R~un"
+
+#: strings.hrc:96
+msgctxt "RID_SVXSTR_ROW"
+msgid "Insert Rows"
+msgstr "Insert Rows"
+
+#: strings.hrc:97
+msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
+msgid "Remove from Favorites"
+msgstr ""
+
+#: strings.hrc:98
+msgctxt "RID_SVXSTR_ADD_FAVORITES"
+msgid "Add to Favorites"
+msgstr ""
+
+#. PPI is pixel per inch, %1 is a number
+#: strings.hrc:100
+msgctxt "RID_SVXSTR_PPI"
+msgid "(%1 PPI)"
+msgstr ""
+
+#: strings.hrc:101
+#, fuzzy
+msgctxt "RID_SVXSTR_COL"
+msgid "Insert Columns"
+msgstr "~Insert Columns"
+
+#: strings.hrc:102
+#, fuzzy
+msgctxt "RID_SVXSTR_AUTO_ENTRY"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: strings.hrc:103
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
+#: strings.hrc:104
+msgctxt "RID_SVXSTR_LOADACCELCONFIG"
+msgid "Load Keyboard Configuration"
+msgstr ""
+
+#: strings.hrc:105
+msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
+msgid "Save Keyboard Configuration"
+msgstr ""
+
+#: strings.hrc:106
+msgctxt "RID_SVXSTR_FILTERNAME_CFG"
+msgid "Configuration (*.cfg)"
+msgstr ""
+
+#: strings.hrc:107
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
+msgid "Targets do not exist in the document."
+msgstr "Targets do not exist in the document."
+
+#: strings.hrc:108
+msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
+msgid "Couldn't open the document."
+msgstr "Couldn't open the document."
+
+#: strings.hrc:109
+msgctxt "RID_SVXSTR_EDITHINT"
+msgid "[Enter text here]"
+msgstr "[Enter text here]"
+
+#: strings.hrc:110
+msgctxt "RID_SVXSTR_HANGUL"
+msgid "Hangul"
+msgstr "Hangul"
+
+#: strings.hrc:111
+msgctxt "RID_SVXSTR_HANJA"
+msgid "Hanja"
+msgstr "Hanja"
+
+#: strings.hrc:112
+msgctxt "RID_SVXSTR_BASICMACROS"
+msgid "BASIC Macros"
+msgstr ""
+
+#: strings.hrc:113
+msgctxt "RID_SVXSTR_GROUP_STYLES"
+msgid "Styles"
+msgstr ""
+
+#: strings.hrc:115
+msgctxt "RID_SVXSTR_EVENT_STARTAPP"
+msgid "Start Application"
+msgstr "Start Application"
+
+#: strings.hrc:116
+msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
+msgid "Close Application"
+msgstr "Close Application"
+
+#: strings.hrc:117
+msgctxt "RID_SVXSTR_EVENT_NEWDOC"
+msgid "New Document"
+msgstr "New Document"
+
+#: strings.hrc:118
+msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
+msgid "Document closed"
+msgstr "Document closed"
+
+#: strings.hrc:119
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
+msgid "Document is going to be closed"
+msgstr "Document is going to be closed"
+
+#: strings.hrc:120
+msgctxt "RID_SVXSTR_EVENT_OPENDOC"
+msgid "Open Document"
+msgstr "Open Document"
+
+#: strings.hrc:121
+msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
+msgid "Save Document"
+msgstr "Save Document"
+
+#: strings.hrc:122
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
+msgid "Save Document As"
+msgstr "Save Document As"
+
+#: strings.hrc:123
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
+msgid "Document has been saved"
+msgstr "Document has been saved"
+
+#: strings.hrc:124
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
+msgid "Document has been saved as"
+msgstr "Document has been saved as"
+
+#: strings.hrc:125
+msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
+msgid "Activate Document"
+msgstr "Activate Document"
+
+#: strings.hrc:126
+msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
+msgid "Deactivate Document"
+msgstr "Deactivate Document"
+
+#: strings.hrc:127
+msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
+msgid "Print Document"
+msgstr "Print Document"
+
+#: strings.hrc:128
+msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
+msgid "'Modified' status was changed"
+msgstr "'Modified' status was changed"
+
+#: strings.hrc:129
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
+msgid "Printing of form letters started"
+msgstr "Printing of form letters started"
+
+#: strings.hrc:130
+msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
+msgid "Printing of form letters finished"
+msgstr "Printing of form letters finished"
+
+#: strings.hrc:131
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
+msgid "Merging of form fields started"
+msgstr "Merging of form fields started"
+
+#: strings.hrc:132
+msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
+msgid "Merging of form fields finished"
+msgstr "Merging of form fields finished"
+
+#: strings.hrc:133
+msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
+msgid "Changing the page count"
+msgstr "Changing the page count"
+
+#: strings.hrc:134
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
+msgid "Loaded a sub component"
+msgstr "Loaded a sub component"
+
+#: strings.hrc:135
+msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
+msgid "Closed a sub component"
+msgstr "Closed a sub component"
+
+#: strings.hrc:136
+msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
+msgid "Fill parameters"
+msgstr "Fill parameters"
+
+#: strings.hrc:137
+msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
+msgid "Execute action"
+msgstr "Execute action"
+
+#: strings.hrc:138
+msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
+msgid "After updating"
+msgstr "After updating"
+
+#: strings.hrc:139
+msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
+msgid "Before updating"
+msgstr "Before updating"
+
+#: strings.hrc:140
+msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
+msgid "Before record action"
+msgstr "Before record action"
+
+#: strings.hrc:141
+msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
+msgid "After record action"
+msgstr "After record action"
+
+#: strings.hrc:142
+msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
+msgid "Confirm deletion"
+msgstr "Confirm deletion"
+
+#: strings.hrc:143
+msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
+msgid "Error occurred"
+msgstr "Error occurred"
+
+#: strings.hrc:144
+msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
+msgid "While adjusting"
+msgstr "While adjusting"
+
+#: strings.hrc:145
+msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
+msgid "When receiving focus"
+msgstr "When receiving focus"
+
+#: strings.hrc:146
+msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
+msgid "When losing focus"
+msgstr "When losing focus"
+
+#: strings.hrc:147
+msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
+msgid "Item status changed"
+msgstr "Item status changed"
+
+#: strings.hrc:148
+msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
+msgid "Key pressed"
+msgstr "Key pressed"
+
+#: strings.hrc:149
+msgctxt "RID_SVXSTR_EVENT_KEYUP"
+msgid "Key released"
+msgstr "Key released"
+
+#: strings.hrc:150
+msgctxt "RID_SVXSTR_EVENT_LOADED"
+msgid "When loading"
+msgstr "When loading"
+
+#: strings.hrc:151
+msgctxt "RID_SVXSTR_EVENT_RELOADING"
+msgid "Before reloading"
+msgstr "Before reloading"
+
+#: strings.hrc:152
+msgctxt "RID_SVXSTR_EVENT_RELOADED"
+msgid "When reloading"
+msgstr "When reloading"
+
+#: strings.hrc:153
+msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
+msgid "Mouse moved while key pressed"
+msgstr "Mouse moved while key pressed"
+
+#: strings.hrc:154
+msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
+msgid "Mouse inside"
+msgstr "Mouse inside"
+
+#: strings.hrc:155
+msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
+msgid "Mouse outside"
+msgstr "Mouse outside"
+
+#: strings.hrc:156
+msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
+msgid "Mouse moved"
+msgstr "Mouse moved"
+
+#: strings.hrc:157
+msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
+msgid "Mouse button pressed"
+msgstr "Mouse button pressed"
+
+#: strings.hrc:158
+msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
+msgid "Mouse button released"
+msgstr "Mouse button released"
+
+#: strings.hrc:159
+msgctxt "RID_SVXSTR_EVENT_POSITIONING"
+msgid "Before record change"
+msgstr "Before record change"
+
+#: strings.hrc:160
+msgctxt "RID_SVXSTR_EVENT_POSITIONED"
+msgid "After record change"
+msgstr "After record change"
+
+#: strings.hrc:161
+msgctxt "RID_SVXSTR_EVENT_RESETTED"
+msgid "After resetting"
+msgstr "After resetting"
+
+#: strings.hrc:162
+msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
+msgid "Prior to reset"
+msgstr "Prior to reset"
+
+#: strings.hrc:163
+msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
+msgid "Approve action"
+msgstr "Approve action"
+
+#: strings.hrc:164
+msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
+msgid "Before submitting"
+msgstr "Before submitting"
+
+#: strings.hrc:165
+msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
+msgid "Text modified"
+msgstr "Text modified"
+
+#: strings.hrc:166
+msgctxt "RID_SVXSTR_EVENT_UNLOADING"
+msgid "Before unloading"
+msgstr "Before unloading"
+
+#: strings.hrc:167
+msgctxt "RID_SVXSTR_EVENT_UNLOADED"
+msgid "When unloading"
+msgstr "When unloading"
+
+#: strings.hrc:168
+msgctxt "RID_SVXSTR_EVENT_CHANGED"
+msgid "Changed"
+msgstr "Changed"
+
+#: strings.hrc:169
+msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
+msgid "Document created"
+msgstr "Document created"
+
+#: strings.hrc:170
+msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
+msgid "Document loading finished"
+msgstr "Document loading finished"
+
+#: strings.hrc:171
+msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
+msgid "Saving of document failed"
+msgstr "Saving of document failed"
+
+#: strings.hrc:172
+msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
+msgid "'Save as' has failed"
+msgstr "'Save as' has failed"
+
+#: strings.hrc:173
+msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
+msgid "Storing or exporting copy of document"
+msgstr "Storing or exporting copy of document"
+
+#: strings.hrc:174
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
+msgid "Document copy has been created"
+msgstr "Document copy has been created"
+
+#: strings.hrc:175
+msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
+msgid "Creating of document copy failed"
+msgstr "Creating of document copy failed"
+
+#: strings.hrc:176
+msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
+msgid "View created"
+msgstr "View created"
+
+#: strings.hrc:177
+msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
+msgid "View is going to be closed"
+msgstr "View is going to be closed"
+
+#: strings.hrc:178
+msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
+msgid "View closed"
+msgstr "View closed"
+
+#: strings.hrc:179
+msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
+msgid "Document title changed"
+msgstr "Document title changed"
+
+#: strings.hrc:180
+msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
+msgid "Selection changed"
+msgstr "Selection changed"
+
+#: strings.hrc:181
+msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
+msgid "Double click"
+msgstr "Double click"
+
+#: strings.hrc:182
+msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
+msgid "Right click"
+msgstr "Right click"
+
+#: strings.hrc:183
+msgctxt "RID_SVXSTR_EVENT_CALCULATE"
+msgid "Formulas calculated"
+msgstr "Formulas calculated"
+
+#: strings.hrc:184
+msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
+msgid "Content changed"
+msgstr "Content changed"
+
+#: strings.hrc:186
+msgctxt "RID_STR_SEARCH_ANYWHERE"
+msgid "anywhere in the field"
+msgstr "anywhere in the field"
+
+#: strings.hrc:187
+msgctxt "RID_STR_SEARCH_BEGINNING"
+msgid "beginning of field"
+msgstr "beginning of field"
+
+#: strings.hrc:188
+msgctxt "RID_STR_SEARCH_END"
+msgid "end of field"
+msgstr "end of field"
+
+#: strings.hrc:189
+msgctxt "RID_STR_SEARCH_WHOLE"
+msgid "entire field"
+msgstr "entire field"
+
+#: strings.hrc:190
+msgctxt "RID_STR_FROM_TOP"
+msgid "From top"
+msgstr "From top"
+
+#: strings.hrc:191
+msgctxt "RID_STR_FROM_BOTTOM"
+msgid "From bottom"
+msgstr "From bottom"
+
+#: strings.hrc:192
+msgctxt "RID_STR_SEARCH_NORECORD"
+msgid "No records corresponding to your data found."
+msgstr "No records corresponding to your data found."
+
+#: strings.hrc:193
+msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
+msgid "An unknown error occurred. The search could not be finished."
+msgstr "An unknown error occurred. The search could not be finished."
+
+#: strings.hrc:194
+msgctxt "RID_STR_OVERFLOW_FORWARD"
+msgid "Overflow, search continued at the beginning"
+msgstr "Overflow, search continued at the beginning"
+
+#: strings.hrc:195
+msgctxt "RID_STR_OVERFLOW_BACKWARD"
+msgid "Overflow, search continued at the end"
+msgstr "Overflow, search continued at the end"
+
+#: strings.hrc:196
+msgctxt "RID_STR_SEARCH_COUNTING"
+msgid "counting records"
+msgstr "counting records"
+
+#: strings.hrc:198
+msgctxt "RID_SVXSTR_GALLERY_NOFILES"
+msgid "<No Files>"
+msgstr "<No Files>"
+
+#: strings.hrc:199
+msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
+msgid "Object;Objects"
+msgstr "Object;Objects"
+
+#: strings.hrc:200
+#, fuzzy
+msgctxt "RID_SVXSTR_GALLERY_READONLY"
+msgid "(read-only)"
+msgstr " (read-only)"
+
+#: strings.hrc:201
+msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
+msgid "<All Files>"
+msgstr "<All Files>"
+
+#: strings.hrc:202
+msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
+msgid "This ID already exists..."
+msgstr "This ID already exists..."
+
+#: strings.hrc:204
+msgctxt "RID_MULTIPATH_DBL_ERR"
+msgid "The path %1 already exists."
+msgstr "The path %1 already exists."
+
+#: strings.hrc:205
+msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
+msgid "Select Archives"
+msgstr "Select Archives"
+
+#: strings.hrc:206
+msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
+msgid "Archives"
+msgstr "Archives"
+
+#: strings.hrc:207
+msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
+msgid "The file %1 already exists."
+msgstr "The file %1 already exists."
+
+#: strings.hrc:208
+msgctxt "RID_SVXSTR_ADD_IMAGE"
+msgid "Add Image"
+msgstr ""
+
+#: strings.hrc:210
+msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
+msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
+msgstr ""
+
+#: strings.hrc:211
+msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
+msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
+msgstr ""
+
+#: strings.hrc:212
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
+msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
+msgstr ""
+
+#: strings.hrc:213
+msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
+msgid "Set the password by entering the same password in both boxes."
+msgstr ""
+
+#: strings.hrc:215
+#, fuzzy
+msgctxt "STR_AUTOLINK"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: strings.hrc:216
+msgctxt "STR_MANUALLINK"
+msgid "Manual"
+msgstr "Manual"
+
+#: strings.hrc:217
+msgctxt "STR_BROKENLINK"
+msgid "Not available"
+msgstr "Not available"
+
+#: strings.hrc:218
+msgctxt "STR_CLOSELINKMSG"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Are you sure you want to remove the selected link?"
+
+#: strings.hrc:219
+msgctxt "STR_CLOSELINKMSG_MULTI"
+msgid "Are you sure you want to remove the selected link?"
+msgstr "Are you sure you want to remove the selected link?"
+
+#: strings.hrc:220
+msgctxt "STR_WAITINGLINK"
+msgid "Waiting"
+msgstr "Waiting"
+
+#: strings.hrc:222
+msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
+msgid "Save Screenshot As..."
+msgstr ""
+
+#. $(ROW) can be a number or the caption of the row in quotes
+#: strings.hrc:225
+msgctxt "RID_SVXSTR_DIAGRAM_ROW"
+msgid "Data Series $(ROW)"
+msgstr "Data Series $(ROW)"
+
+#: strings.hrc:227
+msgctxt "RID_SVXSTR_DRIVER_NAME"
+msgid "Driver name"
+msgstr ""
+
+#: strings.hrc:228
+msgctxt "RID_SVXSTR_POOLED_FLAG"
+msgid "Pool"
+msgstr ""
+
+#: strings.hrc:229
+msgctxt "RID_SVXSTR_POOL_TIMEOUT"
+msgid "Timeout"
+msgstr ""
+
+#: strings.hrc:230
+msgctxt "RID_SVXSTR_YES"
+msgid "Yes"
+msgstr ""
+
+#: strings.hrc:231
+msgctxt "RID_SVXSTR_NO"
+msgid "No"
+msgstr ""
+
+#: strings.hrc:233
+msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist."
+msgstr ""
+"The file\n"
+"$file$\n"
+"does not exist."
+
+#: strings.hrc:234
+msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
+msgid ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+msgstr ""
+"The file\n"
+"$file$\n"
+"does not exist in the local file system."
+
+#: strings.hrc:235
+msgctxt "STR_NAME_CONFLICT"
+msgid ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+msgstr ""
+"The name '$file$' is already used for another database.\n"
+"Please choose a different name."
+
+#: strings.hrc:236
+msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
+msgid "Do you want to delete the entry?"
+msgstr "Do you want to delete the entry?"
+
+#: strings.hrc:238
+msgctxt "RID_SVXSTR_DELQUERY"
+msgid "Do you want to delete the following object?"
+msgstr "Do you want to delete the following object?"
+
+#: strings.hrc:239
+msgctxt "RID_SVXSTR_DELQUERY_TITLE"
+msgid "Confirm Deletion"
+msgstr "Confirm Deletion"
+
+#: strings.hrc:240
+msgctxt "RID_SVXSTR_DELFAILED"
+msgid "The selected object could not be deleted."
+msgstr "The selected object could not be deleted."
+
+#: strings.hrc:241
+msgctxt "RID_SVXSTR_DELFAILED_TITLE"
+msgid "Error Deleting Object"
+msgstr "Error Deleting Object"
+
+#: strings.hrc:242
+msgctxt "RID_SVXSTR_CREATEFAILED"
+msgid "The object could not be created."
+msgstr "The object could not be created."
+
+#: strings.hrc:243
+msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
+msgid " Object with the same name already exists."
+msgstr " Object with the same name already exists."
+
+#: strings.hrc:244
+msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
+msgid "Error Creating Object"
+msgstr "Error Creating Object"
+
+#: strings.hrc:245
+msgctxt "RID_SVXSTR_RENAMEFAILED"
+msgid "The object could not be renamed."
+msgstr "The object could not be renamed."
+
+#: strings.hrc:246
+msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
+msgid "Error Renaming Object"
+msgstr "Error Renaming Object"
+
+#: strings.hrc:247
+msgctxt "RID_SVXSTR_ERROR_TITLE"
+msgid "%PRODUCTNAME Error"
+msgstr "%PRODUCTNAME Error"
+
+#: strings.hrc:248
+#, c-format
+msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
+msgid "The scripting language %LANGUAGENAME is not supported."
+msgstr "The scripting language %LANGUAGENAME is not supported."
+
+#: strings.hrc:249
+#, c-format
+msgctxt "RID_SVXSTR_ERROR_RUNNING"
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: strings.hrc:250
+#, c-format
+msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: strings.hrc:251
+msgctxt "RID_SVXSTR_ERROR_AT_LINE"
+msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+
+#: strings.hrc:252
+msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
+msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
+
+#: strings.hrc:253
+#, c-format
+msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
+msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+msgstr "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
+
+#: strings.hrc:254
+msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
+msgid "Type:"
+msgstr "Type:"
+
+#: strings.hrc:255
+msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
+msgid "Message:"
+msgstr "Message:"
+
+#: strings.hrc:257
+msgctxt "RID_SVXSTR_TYPE"
+msgid "Registered name"
+msgstr ""
+
+#: strings.hrc:258
+msgctxt "RID_SVXSTR_PATH"
+msgid "Database file"
+msgstr ""
+
+#. abbreviation for "[Load]"
+#: strings.hrc:261
+msgctxt "RID_SVXSTR_HEADER1"
+msgid "[L]"
+msgstr ""
+
+#. abbreviation for "[Save]"
+#: strings.hrc:263
+msgctxt "RID_SVXSTR_HEADER2"
+msgid "[S]"
+msgstr ""
+
+#: strings.hrc:264
+msgctxt "RID_SVXSTR_CHG_MATH"
+msgid "MathType to %PRODUCTNAME Math or reverse"
+msgstr ""
+
+#: strings.hrc:265
+msgctxt "RID_SVXSTR_CHG_WRITER"
+msgid "WinWord to %PRODUCTNAME Writer or reverse"
+msgstr ""
+
+#: strings.hrc:266
+msgctxt "RID_SVXSTR_CHG_CALC"
+msgid "Excel to %PRODUCTNAME Calc or reverse"
+msgstr ""
+
+#: strings.hrc:267
+msgctxt "RID_SVXSTR_CHG_IMPRESS"
+msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
+msgstr ""
+
+#: strings.hrc:268
+msgctxt "RID_SVXSTR_CHG_SMARTART"
+msgid "SmartArt to %PRODUCTNAME shapes or reverse"
+msgstr ""
+
+#: strings.hrc:270
+msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
+msgid ""
+"The specified name already exists.\n"
+"Please enter a new name."
+msgstr ""
+"The specified name already exists.\n"
+"Please enter a new name."
+
+#: strings.hrc:271
+msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
+msgid "~Grammar By"
+msgstr ""
+
+#: strings.hrc:272
+msgctxt "STR_MODIFY"
+msgid "~Replace"
+msgstr ""
+
+#: strings.hrc:273
+msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
+msgid "Do you want to change the '%1' dictionary language?"
+msgstr "Do you want to change the '%1' dictionary language?"
+
+#: strings.hrc:275
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
+msgid "Do you really want to delete the color scheme?"
+msgstr "Do you really want to delete the colour scheme?"
+
+#: strings.hrc:276
+msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
+msgid "Color Scheme Deletion"
+msgstr "Colour Scheme Deletion"
+
+#: strings.hrc:277
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
+msgid "Save scheme"
+msgstr "Save scheme"
+
+#: strings.hrc:278
+msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
+msgid "Name of color scheme"
+msgstr "Name of colour scheme"
+
+#: strings.hrc:280
+msgctxt "RID_SVXSTR_SPELL"
+msgid "Spelling"
+msgstr ""
+
+#: strings.hrc:281
+msgctxt "RID_SVXSTR_HYPH"
+msgid "Hyphenation"
+msgstr ""
+
+#: strings.hrc:282
+msgctxt "RID_SVXSTR_THES"
+msgid "Thesaurus"
+msgstr ""
+
+#: strings.hrc:283
+msgctxt "RID_SVXSTR_GRAMMAR"
+msgid "Grammar"
+msgstr ""
+
+#: strings.hrc:284
+msgctxt "RID_SVXSTR_CAPITAL_WORDS"
+msgid "Check uppercase words"
+msgstr ""
+
+#: strings.hrc:285
+msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
+msgid "Check words with numbers "
+msgstr ""
+
+#: strings.hrc:286
+msgctxt "RID_SVXSTR_SPELL_SPECIAL"
+msgid "Check special regions"
+msgstr ""
+
+#: strings.hrc:287
+msgctxt "RID_SVXSTR_SPELL_AUTO"
+msgid "Check spelling as you type"
+msgstr ""
+
+#: strings.hrc:288
+msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
+msgid "Check grammar as you type"
+msgstr ""
+
+#: strings.hrc:289
+msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
+msgid "Minimal number of characters for hyphenation: "
+msgstr ""
+
+#: strings.hrc:290
+msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
+msgid "Characters before line break: "
+msgstr ""
+
+#: strings.hrc:291
+msgctxt "RID_SVXSTR_NUM_POST_BREAK"
+msgid "Characters after line break: "
+msgstr ""
+
+#: strings.hrc:292
+msgctxt "RID_SVXSTR_HYPH_AUTO"
+msgid "Hyphenate without inquiry"
+msgstr ""
+
+#: strings.hrc:293
+msgctxt "RID_SVXSTR_HYPH_SPECIAL"
+msgid "Hyphenate special regions"
+msgstr ""
+
+#: strings.hrc:295
+#, fuzzy
+msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
+msgid ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+msgstr ""
+"The folder you selected does not contain a Java runtime environment.\n"
+"Please select a different folder."
+
+#: strings.hrc:296
+#, fuzzy
+msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
+msgid ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+msgstr ""
+"The Java runtime environment you selected is not the required version.\n"
+"Please select a different folder."
+
+#: strings.hrc:297
+msgctxt "RID_SVXSTR_OPTIONS_RESTART"
+msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
+msgstr ""
+
+#: strings.hrc:298
+msgctxt "RID_SVXSTR_JAVA_START_PARAM"
+msgid "Edit Parameter"
+msgstr ""
+
+#: strings.hrc:300
+msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
+msgid ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+msgstr ""
+"Invalid value!\n"
+"\n"
+"The maximum value for a port number is 65535."
+
+#: strings.hrc:302
+msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
+msgid "Left-to-right (LTR)"
+msgstr ""
+
+#: strings.hrc:303
+msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
+msgid "Right-to-left (RTL)"
+msgstr ""
+
+#: strings.hrc:304
+msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#. page direction
+#: strings.hrc:306
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
+msgid "Left-to-right (horizontal)"
+msgstr "Left-to-right (horizontal)"
+
+#: strings.hrc:307
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
+msgid "Right-to-left (horizontal)"
+msgstr "Right-to-left (horizontal)"
+
+#: strings.hrc:308
+msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
+msgid "Right-to-left (vertical)"
+msgstr "Right-to-left (vertical)"
+
+#: strings.hrc:309
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
+msgid "Left-to-right (vertical)"
+msgstr "Left-to-right (vertical)"
+
+#: strings.hrc:311
+msgctxt "RID_SVXSTR_DESC_GRADIENT"
+msgid "Please enter a name for the gradient:"
+msgstr "Please enter a name for the gradient:"
+
+#: strings.hrc:312
+msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
+msgid "Please enter a name for the bitmap:"
+msgstr "Please enter a name for the bitmap:"
+
+#: strings.hrc:313
+msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
+msgid "Please enter a name for the external bitmap:"
+msgstr "Please enter a name for the external bitmap:"
+
+#: strings.hrc:314
+msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
+msgid "Please enter a name for the pattern:"
+msgstr ""
+
+#: strings.hrc:315
+msgctxt "RID_SVXSTR_DESC_LINESTYLE"
+msgid "Please enter a name for the line style:"
+msgstr "Please enter a name for the line style:"
+
+#: strings.hrc:316
+msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
+msgid ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+msgstr ""
+"The line style was modified without saving. \n"
+"Modify the selected line style or add a new line style."
+
+#: strings.hrc:317
+msgctxt "RID_SVXSTR_DESC_HATCH"
+msgid "Please enter a name for the hatching:"
+msgstr "Please enter a name for the hatching:"
+
+#: strings.hrc:318
+msgctxt "RID_SVXSTR_CHANGE"
+msgid "Modify"
+msgstr "Modify"
+
+#: strings.hrc:319
+msgctxt "RID_SVXSTR_ADD"
+msgid "Add"
+msgstr "Add"
+
+#: strings.hrc:320
+msgctxt "RID_SVXSTR_DESC_COLOR"
+msgid "Please enter a name for the new color:"
+msgstr "Please enter a name for the new colour:"
+
+#: strings.hrc:321
+msgctxt "RID_SVXSTR_TABLE"
+msgid "Table"
+msgstr "Table"
+
+#: strings.hrc:322
+msgctxt "RID_SVXSTR_DESC_LINEEND"
+msgid "Please enter a name for the new arrowhead:"
+msgstr "Please enter a name for the new arrowhead:"
+
+#: strings.hrc:323
+msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
+msgid "No %1"
+msgstr "No %1"
+
+#: strings.hrc:324
+msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
+msgid "Family:"
+msgstr ""
+
+#: strings.hrc:325
+msgctxt "RID_SVXSTR_CHARNAME_FONT"
+msgid "Font:"
+msgstr ""
+
+#: strings.hrc:326
+msgctxt "RID_SVXSTR_CHARNAME_STYLE"
+msgid "Style:"
+msgstr ""
+
+#: strings.hrc:327
+msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
+msgid "Typeface:"
+msgstr ""
+
+#: strings.hrc:328
+msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
+msgid "Highlight Color"
+msgstr ""
+
+#: strings.hrc:329
+msgctxt "RID_SVXSTR_USE_REPLACE"
+msgid "Use replacement table"
+msgstr ""
+
+#: strings.hrc:330
+msgctxt "RID_SVXSTR_CPTL_STT_WORD"
+msgid "Correct TWo INitial CApitals"
+msgstr ""
+
+#: strings.hrc:331
+msgctxt "RID_SVXSTR_CPTL_STT_SENT"
+msgid "Capitalize first letter of every sentence"
+msgstr ""
+
+#: strings.hrc:332
+msgctxt "RID_SVXSTR_BOLD_UNDER"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
+
+#: strings.hrc:333
+msgctxt "RID_SVXSTR_NO_DBL_SPACES"
+msgid "Ignore double spaces"
+msgstr ""
+
+#: strings.hrc:334
+msgctxt "RID_SVXSTR_DETECT_URL"
+msgid "URL Recognition"
+msgstr ""
+
+#: strings.hrc:335
+msgctxt "RID_SVXSTR_DASH"
+msgid "Replace dashes"
+msgstr ""
+
+#: strings.hrc:336
+msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr ""
+
+#: strings.hrc:337
+msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
+msgid "Add non-breaking space before specific punctuation marks in French text"
+msgstr ""
+
+#: strings.hrc:338
+msgctxt "RID_SVXSTR_ORDINAL"
+msgid "Format ordinal numbers suffixes (1st -> 1^st)"
+msgstr ""
+
+#: strings.hrc:339
+msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
+msgid "Remove blank paragraphs"
+msgstr ""
+
+#: strings.hrc:340
+msgctxt "RID_SVXSTR_USER_STYLE"
+msgid "Replace Custom Styles"
+msgstr ""
+
+#: strings.hrc:341
+msgctxt "RID_SVXSTR_BULLET"
+msgid "Replace bullets with: "
+msgstr ""
+
+#: strings.hrc:342
+msgctxt "RID_SVXSTR_RIGHT_MARGIN"
+msgid "Combine single line paragraphs if length greater than"
+msgstr ""
+
+#: strings.hrc:343
+msgctxt "RID_SVXSTR_NUM"
+msgid "Bulleted and numbered lists. Bullet symbol: "
+msgstr ""
+
+#: strings.hrc:344
+msgctxt "RID_SVXSTR_BORDER"
+msgid "Apply border"
+msgstr ""
+
+#: strings.hrc:345
+msgctxt "RID_SVXSTR_CREATE_TABLE"
+msgid "Create table"
+msgstr ""
+
+#: strings.hrc:346
+msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
+msgid "Apply Styles"
+msgstr ""
+
+#: strings.hrc:347
+msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
+msgid "Delete spaces and tabs at beginning and end of paragraph"
+msgstr ""
+
+#: strings.hrc:348
+msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
+msgid "Delete spaces and tabs at end and start of line"
+msgstr ""
+
+#: strings.hrc:349
+msgctxt "RID_SVXSTR_CONNECTOR"
+msgid "Connector"
+msgstr ""
+
+#: strings.hrc:350
+msgctxt "RID_SVXSTR_DIMENSION_LINE"
+msgid "Dimension line"
+msgstr ""
+
+#: strings.hrc:351
+msgctxt "RID_SVXSTR_LOAD_ERROR"
+msgid "The selected module could not be loaded."
+msgstr ""
+
+#: strings.hrc:352
+msgctxt "RID_SVXSTR_STARTQUOTE"
+msgid "Start Quote"
+msgstr ""
+
+#: strings.hrc:353
+msgctxt "RID_SVXSTR_ENDQUOTE"
+msgid "End Quote"
+msgstr ""
+
+#: strings.hrc:355
+msgctxt "RID_SVXSTR_SELECTEDPERSONA"
+msgid "Selected Theme: "
+msgstr ""
+
+#: strings.hrc:356
+msgctxt "RID_SVXSTR_SEARCHING"
+msgid "Searching, please wait..."
+msgstr ""
+
+#: strings.hrc:357
+msgctxt "RID_SVXSTR_SEARCHERROR"
+msgid "Cannot open %1, please try again later."
+msgstr ""
+
+#: strings.hrc:358
+msgctxt "RID_SVXSTR_NORESULTS"
+msgid "No results found."
+msgstr ""
+
+#: strings.hrc:359
+msgctxt "RID_SVXSTR_APPLYPERSONA"
+msgid "Applying Theme..."
+msgstr ""
+
+#: strings.hrc:361
+msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
+msgid "Set No Borders"
+msgstr "Set No Borders"
+
+#: strings.hrc:362
+msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
+msgid "Set Outer Border Only"
+msgstr "Set Outer Border Only"
+
+#: strings.hrc:363
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
+msgid "Set Outer Border and Horizontal Lines"
+msgstr "Set Outer Border and Horizontal Lines"
+
+#: strings.hrc:364
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
+msgid "Set Outer Border and All Inner Lines"
+msgstr "Set Outer Border and All Inner Lines"
+
+#: strings.hrc:365
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
+msgid "Set Outer Border Without Changing Inner Lines"
+msgstr "Set Outer Border Without Changing Inner Lines"
+
+#: strings.hrc:366
+msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
+msgid "Set Diagonal Lines Only"
+msgstr "Set Diagonal Lines Only"
+
+#: strings.hrc:367
+msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
+msgid "Set All Four Borders"
+msgstr "Set All Four Borders"
+
+#: strings.hrc:368
+msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Set Left and Right Borders Only"
+msgstr "Set Left and Right Borders Only"
+
+#: strings.hrc:369
+msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Set Top and Bottom Borders Only"
+msgstr "Set Top and Bottom Borders Only"
+
+#: strings.hrc:370
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
+msgid "Set Left Border Only"
+msgstr "Set Left Border Only"
+
+#: strings.hrc:371
+msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
+msgid "Set Top and Bottom Borders, and All Inner Lines"
+msgstr "Set Top and Bottom Borders, and All Inner Lines"
+
+#: strings.hrc:372
+msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
+msgid "Set Left and Right Borders, and All Inner Lines"
+msgstr "Set Left and Right Borders, and All Inner Lines"
+
+#: strings.hrc:373
+msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
+msgid "No Shadow"
+msgstr "No Shadow"
+
+#: strings.hrc:374
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
+msgid "Cast Shadow to Bottom Right"
+msgstr "Cast Shadow to Bottom Right"
+
+#: strings.hrc:375
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
+msgid "Cast Shadow to Top Right"
+msgstr "Cast Shadow to Top Right"
+
+#: strings.hrc:376
+msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
+msgid "Cast Shadow to Bottom Left"
+msgstr "Cast Shadow to Bottom Left"
+
+#: strings.hrc:377
+msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
+msgid "Cast Shadow to Top Left"
+msgstr "Cast Shadow to Top Left"
+
+#: treeopt.hrc:30
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "%PRODUCTNAME"
+msgstr ""
+
+#: treeopt.hrc:31
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "User Data"
+msgstr ""
+
+#: treeopt.hrc:32
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:33
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:34
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:35
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Paths"
+msgstr ""
+
+#: treeopt.hrc:36
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Fonts"
+msgstr ""
+
+#: treeopt.hrc:37
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Security"
+msgstr ""
+
+#: treeopt.hrc:38
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Personalization"
+msgstr ""
+
+#: treeopt.hrc:39
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Application Colors"
+msgstr ""
+
+#: treeopt.hrc:40
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Accessibility"
+msgstr ""
+
+#: treeopt.hrc:41
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Advanced"
+msgstr ""
+
+#: treeopt.hrc:42
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Basic IDE"
+msgstr ""
+
+#: treeopt.hrc:43
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "Online Update"
+msgstr ""
+
+#: treeopt.hrc:44
+msgctxt "SID_GENERAL_OPTIONS_RES"
+msgid "OpenCL"
+msgstr ""
+
+#: treeopt.hrc:49
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Language Settings"
+msgstr ""
+
+#: treeopt.hrc:50
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Languages"
+msgstr ""
+
+#: treeopt.hrc:51
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Writing Aids"
+msgstr ""
+
+#: treeopt.hrc:52
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Searching in Japanese"
+msgstr ""
+
+#: treeopt.hrc:53
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Asian Layout"
+msgstr ""
+
+#: treeopt.hrc:54
+msgctxt "SID_LANGUAGE_OPTIONS_RES"
+msgid "Complex Text Layout"
+msgstr ""
+
+#: treeopt.hrc:59
+msgctxt "SID_INET_DLG_RES"
+msgid "Internet"
+msgstr ""
+
+#: treeopt.hrc:60
+msgctxt "SID_INET_DLG_RES"
+msgid "Proxy"
+msgstr ""
+
+#: treeopt.hrc:61
+msgctxt "SID_INET_DLG_RES"
+msgid "E-mail"
+msgstr ""
+
+#: treeopt.hrc:66
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Writer"
+msgstr ""
+
+#: treeopt.hrc:67
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:68
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:69
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Formatting Aids"
+msgstr ""
+
+#: treeopt.hrc:70
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:71
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (Western)"
+msgstr ""
+
+#: treeopt.hrc:72
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (Asian)"
+msgstr ""
+
+#: treeopt.hrc:73
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Basic Fonts (CTL)"
+msgstr ""
+
+#: treeopt.hrc:74
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:75
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Table"
+msgstr ""
+
+#: treeopt.hrc:76
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Changes"
+msgstr ""
+
+#: treeopt.hrc:77
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Comparison"
+msgstr ""
+
+#: treeopt.hrc:78
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Compatibility"
+msgstr ""
+
+#: treeopt.hrc:79
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "AutoCaption"
+msgstr ""
+
+#: treeopt.hrc:80
+msgctxt "SID_SW_EDITOPTIONS_RES"
+msgid "Mail Merge E-mail"
+msgstr ""
+
+#: treeopt.hrc:85
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "%PRODUCTNAME Writer/Web"
+msgstr ""
+
+#: treeopt.hrc:86
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:87
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Formatting Aids"
+msgstr ""
+
+#: treeopt.hrc:88
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:89
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:90
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Table"
+msgstr ""
+
+#: treeopt.hrc:91
+msgctxt "SID_SW_ONLINEOPTIONS_RES"
+msgid "Background"
+msgstr ""
+
+#: treeopt.hrc:96
+msgctxt "SID_SM_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Math"
+msgstr ""
+
+#: treeopt.hrc:97
+msgctxt "SID_SM_EDITOPTIONS_RES"
+msgid "Settings"
+msgstr ""
+
+#: treeopt.hrc:102
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Calc"
+msgstr ""
+
+#: treeopt.hrc:103
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:104
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Defaults"
+msgstr ""
+
+#: treeopt.hrc:105
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:106
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Calculate"
+msgstr ""
+
+#: treeopt.hrc:107
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Formula"
+msgstr ""
+
+#: treeopt.hrc:108
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Sort Lists"
+msgstr ""
+
+#: treeopt.hrc:109
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Changes"
+msgstr ""
+
+#: treeopt.hrc:110
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Compatibility"
+msgstr ""
+
+#: treeopt.hrc:111
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:112
+msgctxt "SID_SC_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:117
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "%PRODUCTNAME Impress"
+msgstr ""
+
+#: treeopt.hrc:118
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:119
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:120
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:121
+msgctxt "SID_SD_EDITOPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:126
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "%PRODUCTNAME Draw"
+msgstr ""
+
+#: treeopt.hrc:127
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:128
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "View"
+msgstr ""
+
+#: treeopt.hrc:129
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "Grid"
+msgstr ""
+
+#: treeopt.hrc:130
+msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
+msgid "Print"
+msgstr ""
+
+#: treeopt.hrc:135
+msgctxt "SID_SCH_EDITOPTIONS_RES"
+msgid "Charts"
+msgstr ""
+
+#: treeopt.hrc:136
+msgctxt "SID_SCH_EDITOPTIONS_RES"
+msgid "Default Colors"
+msgstr ""
+
+#: treeopt.hrc:141
+msgctxt "SID_FILTER_DLG_RES"
+msgid "Load/Save"
+msgstr ""
+
+#: treeopt.hrc:142
+msgctxt "SID_FILTER_DLG_RES"
+msgid "General"
+msgstr ""
+
+#: treeopt.hrc:143
+msgctxt "SID_FILTER_DLG_RES"
+msgid "VBA Properties"
+msgstr ""
+
+#: treeopt.hrc:144
+msgctxt "SID_FILTER_DLG_RES"
+msgid "Microsoft Office"
+msgstr ""
+
+#: treeopt.hrc:145
+msgctxt "SID_FILTER_DLG_RES"
+msgid "HTML Compatibility"
+msgstr ""
+
+#: treeopt.hrc:150
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "%PRODUCTNAME Base"
+msgstr ""
+
+#: treeopt.hrc:151
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "Connections"
+msgstr ""
+
+#: treeopt.hrc:152
+msgctxt "SID_SB_STARBASEOPTIONS_RES"
+msgid "Databases"
+msgstr ""
+
#: aboutconfigdialog.ui:9
msgctxt "aboutconfigdialog|AboutConfig"
msgid "Expert Configuration"
@@ -428,17 +2517,17 @@ msgctxt "areadialog|AreaDialog"
msgid "Area"
msgstr ""
-#: areadialog.ui:100
+#: areadialog.ui:106
msgctxt "areadialog|RID_SVXPAGE_AREA"
msgid "Area"
msgstr ""
-#: areadialog.ui:113
+#: areadialog.ui:128
msgctxt "areadialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Shadow"
-#: areadialog.ui:127
+#: areadialog.ui:151
msgctxt "areadialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr ""
@@ -508,45 +2597,45 @@ msgctxt "autocorrectdialog|AutoCorrectDialog"
msgid "AutoCorrect"
msgstr ""
-#: autocorrectdialog.ui:104
+#: autocorrectdialog.ui:103
msgctxt "autocorrectdialog|label1"
msgid "Replacements and exceptions for language:"
msgstr ""
-#: autocorrectdialog.ui:143
+#: autocorrectdialog.ui:149
#, fuzzy
msgctxt "autocorrectdialog|replace"
msgid "Replace"
msgstr "Replace"
-#: autocorrectdialog.ui:156
+#: autocorrectdialog.ui:171
msgctxt "autocorrectdialog|exceptions"
msgid "Exceptions"
msgstr ""
-#: autocorrectdialog.ui:170
+#: autocorrectdialog.ui:194
#, fuzzy
msgctxt "autocorrectdialog|options"
msgid "Options"
msgstr "Options"
-#: autocorrectdialog.ui:184
+#: autocorrectdialog.ui:217
#, fuzzy
msgctxt "autocorrectdialog|apply"
msgid "Options"
msgstr "Options"
-#: autocorrectdialog.ui:198
+#: autocorrectdialog.ui:240
msgctxt "autocorrectdialog|localized"
msgid "Localized Options"
msgstr ""
-#: autocorrectdialog.ui:212
+#: autocorrectdialog.ui:263
msgctxt "autocorrectdialog|wordcompletion"
msgid "Word Completion"
msgstr ""
-#: autocorrectdialog.ui:226
+#: autocorrectdialog.ui:286
msgctxt "autocorrectdialog|smarttags"
msgid "Smart Tags"
msgstr ""
@@ -571,71 +2660,71 @@ msgctxt "backgroundpage|forft"
msgid "F_or:"
msgstr ""
-#: backgroundpage.ui:89
+#: backgroundpage.ui:91
msgctxt "backgroundpage|tablelb"
msgid "Cell"
msgstr ""
-#: backgroundpage.ui:90
+#: backgroundpage.ui:92
msgctxt "backgroundpage|tablelb"
msgid "Row"
msgstr ""
-#: backgroundpage.ui:91
+#: backgroundpage.ui:93
msgctxt "backgroundpage|tablelb"
msgid "Table"
msgstr ""
-#: backgroundpage.ui:212
+#: backgroundpage.ui:214
msgctxt "backgroundpage|background_label"
msgid "Background Color"
msgstr ""
-#: backgroundpage.ui:275
+#: backgroundpage.ui:276
msgctxt "backgroundpage|unlinkedft"
msgid "Unlinked image"
msgstr ""
-#: backgroundpage.ui:287
+#: backgroundpage.ui:288
msgctxt "backgroundpage|findgraphicsft"
msgid "Find images"
msgstr ""
-#: backgroundpage.ui:302
+#: backgroundpage.ui:304
#, fuzzy
msgctxt "backgroundpage|browse"
msgid "_Browse..."
msgstr "Browse..."
-#: backgroundpage.ui:315
+#: backgroundpage.ui:317
msgctxt "backgroundpage|link"
msgid "_Link"
msgstr ""
-#: backgroundpage.ui:343
+#: backgroundpage.ui:345
#, fuzzy
msgctxt "backgroundpage|label2"
msgid "File"
msgstr "File"
-#: backgroundpage.ui:401
+#: backgroundpage.ui:403
#, fuzzy
msgctxt "backgroundpage|positionrb"
msgid "_Position"
msgstr "Position"
-#: backgroundpage.ui:421
+#: backgroundpage.ui:423
msgctxt "backgroundpage|arearb"
msgid "Ar_ea"
msgstr ""
-#: backgroundpage.ui:437
+#: backgroundpage.ui:439
#, fuzzy
msgctxt "backgroundpage|tilerb"
msgid "_Tile"
msgstr "Title"
-#: backgroundpage.ui:465
+#: backgroundpage.ui:467
msgctxt "backgroundpage|label8"
msgid "Type"
msgstr ""
@@ -657,72 +2746,67 @@ msgid "_Update"
msgstr ""
#: baselinksdialog.ui:69
-msgctxt "baselinksdialog|OPEN"
-msgid "_Open"
-msgstr ""
-
-#: baselinksdialog.ui:84
msgctxt "baselinksdialog|CHANGE_SOURCE"
msgid "_Modify..."
msgstr ""
-#: baselinksdialog.ui:99
+#: baselinksdialog.ui:84
msgctxt "baselinksdialog|BREAK_LINK"
msgid "_Break Link"
msgstr ""
-#: baselinksdialog.ui:147
+#: baselinksdialog.ui:132
msgctxt "baselinksdialog|FILES"
msgid "Source file"
msgstr ""
-#: baselinksdialog.ui:161
+#: baselinksdialog.ui:146
msgctxt "baselinksdialog|LINKS"
msgid "Element:"
msgstr ""
-#: baselinksdialog.ui:175
+#: baselinksdialog.ui:160
msgctxt "baselinksdialog|TYPE"
msgid "Type"
msgstr ""
-#: baselinksdialog.ui:190
+#: baselinksdialog.ui:175
msgctxt "baselinksdialog|STATUS"
msgid "Status"
msgstr ""
-#: baselinksdialog.ui:217
+#: baselinksdialog.ui:202
msgctxt "baselinksdialog|TB_LINKS-atkobject"
msgid "Edit Links"
msgstr ""
-#: baselinksdialog.ui:246
+#: baselinksdialog.ui:231
msgctxt "baselinksdialog|FILES2"
msgid "Source file"
msgstr ""
-#: baselinksdialog.ui:262
+#: baselinksdialog.ui:247
msgctxt "baselinksdialog|SOURCE2"
msgid "Element:"
msgstr ""
-#: baselinksdialog.ui:276
+#: baselinksdialog.ui:261
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
msgstr ""
-#: baselinksdialog.ui:290
+#: baselinksdialog.ui:275
msgctxt "baselinksdialog|UPDATE"
msgid "Update:"
msgstr ""
-#: baselinksdialog.ui:345
+#: baselinksdialog.ui:352
#, fuzzy
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
msgstr "Automatic"
-#: baselinksdialog.ui:365
+#: baselinksdialog.ui:372
msgctxt "baselinksdialog|MANUAL"
msgid "Ma_nual"
msgstr ""
@@ -732,157 +2816,157 @@ msgctxt "bitmaptabpage|BTN_IMPORT"
msgid "Add / Import"
msgstr ""
-#: bitmaptabpage.ui:66
+#: bitmaptabpage.ui:65
msgctxt "bitmaptabpage|label1"
msgid "Bitmap"
msgstr ""
-#: bitmaptabpage.ui:111
+#: bitmaptabpage.ui:110
msgctxt "bitmaptabpage|label3"
msgid "Style:"
msgstr ""
-#: bitmaptabpage.ui:124
+#: bitmaptabpage.ui:126
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Original"
msgstr ""
-#: bitmaptabpage.ui:125
+#: bitmaptabpage.ui:127
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Filled"
msgstr ""
-#: bitmaptabpage.ui:126
+#: bitmaptabpage.ui:128
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Stretched"
msgstr ""
-#: bitmaptabpage.ui:127
+#: bitmaptabpage.ui:129
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Zoomed"
msgstr ""
-#: bitmaptabpage.ui:128
+#: bitmaptabpage.ui:130
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom"
msgstr ""
-#: bitmaptabpage.ui:129
+#: bitmaptabpage.ui:131
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Tiled"
msgstr ""
-#: bitmaptabpage.ui:156
+#: bitmaptabpage.ui:157
msgctxt "bitmaptabpage|label4"
msgid "Size:"
msgstr ""
-#: bitmaptabpage.ui:173
+#: bitmaptabpage.ui:175
msgctxt "bitmaptabpage|label5"
-msgid "W:"
+msgid "Width:"
msgstr ""
-#: bitmaptabpage.ui:197
+#: bitmaptabpage.ui:201
msgctxt "bitmaptabpage|label6"
-msgid "H:"
+msgid "Height:"
msgstr ""
-#: bitmaptabpage.ui:226
+#: bitmaptabpage.ui:232
msgctxt "bitmaptabpage|scaletsb"
msgid "Scale"
msgstr ""
-#: bitmaptabpage.ui:257
+#: bitmaptabpage.ui:262
msgctxt "bitmaptabpage|label7"
msgid "Position:"
msgstr ""
-#: bitmaptabpage.ui:270
+#: bitmaptabpage.ui:278
msgctxt "bitmaptabpage|positionlb"
msgid "Top Left"
msgstr ""
-#: bitmaptabpage.ui:271
+#: bitmaptabpage.ui:279
msgctxt "bitmaptabpage|positionlb"
msgid "Top Center"
msgstr ""
-#: bitmaptabpage.ui:272
+#: bitmaptabpage.ui:280
msgctxt "bitmaptabpage|positionlb"
msgid "Top Right"
msgstr ""
-#: bitmaptabpage.ui:273
+#: bitmaptabpage.ui:281
msgctxt "bitmaptabpage|positionlb"
msgid "Center Left"
msgstr ""
-#: bitmaptabpage.ui:274
+#: bitmaptabpage.ui:282
msgctxt "bitmaptabpage|positionlb"
msgid "Center"
msgstr ""
-#: bitmaptabpage.ui:275
+#: bitmaptabpage.ui:283
msgctxt "bitmaptabpage|positionlb"
msgid "Center Right"
msgstr ""
-#: bitmaptabpage.ui:276
+#: bitmaptabpage.ui:284
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Left"
msgstr ""
-#: bitmaptabpage.ui:277
+#: bitmaptabpage.ui:285
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Center"
msgstr ""
-#: bitmaptabpage.ui:278
+#: bitmaptabpage.ui:286
msgctxt "bitmaptabpage|positionlb"
msgid "Bottom Right"
msgstr ""
-#: bitmaptabpage.ui:305
+#: bitmaptabpage.ui:312
msgctxt "bitmaptabpage|label9"
msgid "Tiling Position:"
msgstr ""
-#: bitmaptabpage.ui:323
+#: bitmaptabpage.ui:331
msgctxt "bitmaptabpage|label10"
-msgid "X:"
+msgid "X-Offset:"
msgstr ""
-#: bitmaptabpage.ui:346
+#: bitmaptabpage.ui:356
msgctxt "bitmaptabpage|label11"
-msgid "Y:"
+msgid "Y-Offset:"
msgstr ""
-#: bitmaptabpage.ui:390
+#: bitmaptabpage.ui:401
msgctxt "bitmaptabpage|label15"
msgid "Tiling Offset:"
msgstr ""
-#: bitmaptabpage.ui:409
+#: bitmaptabpage.ui:423
msgctxt "bitmaptabpage|tileofflb"
msgid "Row"
msgstr ""
-#: bitmaptabpage.ui:410
+#: bitmaptabpage.ui:424
msgctxt "bitmaptabpage|tileofflb"
msgid "Column"
msgstr ""
-#: bitmaptabpage.ui:453
+#: bitmaptabpage.ui:467
msgctxt "bitmaptabpage|label2"
msgid "Options"
msgstr ""
-#: bitmaptabpage.ui:496
+#: bitmaptabpage.ui:510
msgctxt "bitmaptabpage|CTL_BITMAP_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#: bitmaptabpage.ui:514
+#: bitmaptabpage.ui:528
#, fuzzy
msgctxt "bitmaptabpage|label8"
msgid "Preview"
@@ -948,18 +3032,18 @@ msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog"
msgid "Border / Background"
msgstr ""
-#: borderareatransparencydialog.ui:100
+#: borderareatransparencydialog.ui:106
#, fuzzy
msgctxt "borderareatransparencydialog|borders"
msgid "Borders"
msgstr "Border"
-#: borderareatransparencydialog.ui:113
+#: borderareatransparencydialog.ui:128
msgctxt "borderareatransparencydialog|area"
msgid "Area"
msgstr ""
-#: borderareatransparencydialog.ui:127
+#: borderareatransparencydialog.ui:151
msgctxt "borderareatransparencydialog|transparence"
msgid "Transparency"
msgstr ""
@@ -969,13 +3053,13 @@ msgctxt "borderbackgrounddialog|BorderBackgroundDialog"
msgid "Border / Background"
msgstr ""
-#: borderbackgrounddialog.ui:100
+#: borderbackgrounddialog.ui:106
#, fuzzy
msgctxt "borderbackgrounddialog|borders"
msgid "Borders"
msgstr "Border"
-#: borderbackgrounddialog.ui:113
+#: borderbackgrounddialog.ui:128
msgctxt "borderbackgrounddialog|background"
msgid "Background"
msgstr ""
@@ -1119,17 +3203,17 @@ msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
msgstr ""
-#: calloutdialog.ui:100
+#: calloutdialog.ui:106
msgctxt "calloutdialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: calloutdialog.ui:113
+#: calloutdialog.ui:128
msgctxt "calloutdialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: calloutdialog.ui:127
+#: calloutdialog.ui:151
msgctxt "calloutdialog|RID_SVXPAGE_CAPTION"
msgid "Callout"
msgstr ""
@@ -1442,33 +3526,11 @@ msgctxt "charnamepage|westlangft-nocjk"
msgid "Language:"
msgstr "Language"
-#: charnamepage.ui:106
-msgctxt "charnamepage|westfontnameft-nocjk"
-msgid "Family:"
-msgstr ""
-
-#: charnamepage.ui:145
-#, fuzzy
-msgctxt "charnamepage|weststyleft-nocjk"
-msgid "Style:"
-msgstr "Style"
-
#: charnamepage.ui:185
msgctxt "charnamepage|westsizeft-nocjk"
msgid "Size:"
msgstr "Size:"
-#: charnamepage.ui:227
-msgctxt "charnamepage|westfontnameft-cjk"
-msgid "Family:"
-msgstr ""
-
-#: charnamepage.ui:242
-#, fuzzy
-msgctxt "charnamepage|weststyleft-cjk"
-msgid "Style:"
-msgstr "Style"
-
#: charnamepage.ui:257
msgctxt "charnamepage|westsizeft-cjk"
msgid "Size:"
@@ -1486,17 +3548,6 @@ msgctxt "charnamepage|label4"
msgid "Western Text Font"
msgstr "Western text font"
-#: charnamepage.ui:385
-msgctxt "charnamepage|eastfontnameft"
-msgid "Family:"
-msgstr ""
-
-#: charnamepage.ui:400
-#, fuzzy
-msgctxt "charnamepage|eaststyleft"
-msgid "Style:"
-msgstr "Style"
-
#: charnamepage.ui:415
msgctxt "charnamepage|eastsizeft"
msgid "Size:"
@@ -1514,17 +3565,6 @@ msgctxt "charnamepage|label5"
msgid "Asian Text Font"
msgstr "Asian text font"
-#: charnamepage.ui:542
-msgctxt "charnamepage|ctlfontnameft"
-msgid "Family:"
-msgstr ""
-
-#: charnamepage.ui:557
-#, fuzzy
-msgctxt "charnamepage|ctlstyleft"
-msgid "Style:"
-msgstr "Style"
-
#: charnamepage.ui:572
msgctxt "charnamepage|ctlsizeft"
msgid "Size:"
@@ -2286,27 +4326,27 @@ msgctxt "customizedialog|CustomizeDialog"
msgid "Customize"
msgstr ""
-#: customizedialog.ui:99
+#: customizedialog.ui:105
msgctxt "customizedialog|menus"
msgid "Menus"
msgstr ""
-#: customizedialog.ui:112
+#: customizedialog.ui:127
msgctxt "customizedialog|toolbars"
msgid "Toolbars"
msgstr ""
-#: customizedialog.ui:126
+#: customizedialog.ui:150
msgctxt "customizedialog|contextmenus"
msgid "Context Menus"
msgstr ""
-#: customizedialog.ui:140
+#: customizedialog.ui:173
msgctxt "customizedialog|keyboard"
msgid "Keyboard"
msgstr ""
-#: customizedialog.ui:154
+#: customizedialog.ui:196
msgctxt "customizedialog|events"
msgid "Events"
msgstr ""
@@ -3093,24 +5133,24 @@ msgctxt "formatcellsdialog|FormatCellsDialog"
msgid "Table Properties"
msgstr ""
-#: formatcellsdialog.ui:100
+#: formatcellsdialog.ui:106
#, fuzzy
msgctxt "formatcellsdialog|name"
msgid "Font"
msgstr "Font"
-#: formatcellsdialog.ui:113
+#: formatcellsdialog.ui:128
msgctxt "formatcellsdialog|effects"
msgid "Font Effects"
msgstr ""
-#: formatcellsdialog.ui:127
+#: formatcellsdialog.ui:151
#, fuzzy
msgctxt "formatcellsdialog|border"
msgid "Borders"
msgstr "Border"
-#: formatcellsdialog.ui:141
+#: formatcellsdialog.ui:174
msgctxt "formatcellsdialog|area"
msgid "Background"
msgstr ""
@@ -3208,12 +5248,12 @@ msgctxt "gallerythemedialog|GalleryThemeDialog"
msgid "Properties of "
msgstr ""
-#: gallerythemedialog.ui:100
+#: gallerythemedialog.ui:106
msgctxt "gallerythemedialog|general"
msgid "General"
msgstr ""
-#: gallerythemedialog.ui:113
+#: gallerythemedialog.ui:128
#, fuzzy
msgctxt "gallerythemedialog|files"
msgid "Files"
@@ -3261,88 +5301,108 @@ msgctxt "gradientpage|label1"
msgid "Gradient"
msgstr ""
-#: gradientpage.ui:150
+#: gradientpage.ui:149
msgctxt "gradientpage|typeft"
msgid "_Type:"
msgstr ""
-#: gradientpage.ui:164
+#: gradientpage.ui:165
msgctxt "gradientpage|gradienttypelb"
msgid "Linear"
msgstr ""
-#: gradientpage.ui:165
+#: gradientpage.ui:166
msgctxt "gradientpage|gradienttypelb"
msgid "Axial"
msgstr ""
-#: gradientpage.ui:166
+#: gradientpage.ui:167
msgctxt "gradientpage|gradienttypelb"
msgid "Radial"
msgstr ""
-#: gradientpage.ui:167
+#: gradientpage.ui:168
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
msgstr ""
-#: gradientpage.ui:168
+#: gradientpage.ui:169
msgctxt "gradientpage|gradienttypelb"
msgid "Quadratic"
msgstr ""
-#: gradientpage.ui:169
+#: gradientpage.ui:170
msgctxt "gradientpage|gradienttypelb"
msgid "Square"
msgstr ""
-#: gradientpage.ui:198
+#: gradientpage.ui:197
msgctxt "gradientpage|incrementft"
msgid "Increment:"
msgstr ""
-#: gradientpage.ui:238
+#: gradientpage.ui:235
msgctxt "gradientpage|autoincrement"
-msgid "Automatic"
+msgid "A_utomatic"
msgstr ""
-#: gradientpage.ui:278
+#: gradientpage.ui:272
msgctxt "gradientpage|angleft"
msgid "A_ngle:"
msgstr ""
-#: gradientpage.ui:308
+#: gradientpage.ui:299
msgctxt "gradientpage|centerft"
-msgid "Center ( X / Y ) :"
+msgid "Center ( X / Y ):"
msgstr ""
-#: gradientpage.ui:380
+#: gradientpage.ui:367
#, fuzzy
msgctxt "gradientpage|borderft"
msgid "_Border:"
msgstr "Border"
-#: gradientpage.ui:442
+#: gradientpage.ui:425
msgctxt "gradientpage|colorfromft"
-msgid "_From:"
+msgid "_From Color:"
msgstr ""
-#: gradientpage.ui:532
+#: gradientpage.ui:506
msgctxt "gradientpage|colortoft"
-msgid "_To:"
+msgid "_To Color:"
+msgstr ""
+
+#: gradientpage.ui:533
+msgctxt "gradientpage|a11y_center_x"
+msgid "Center X"
+msgstr ""
+
+#: gradientpage.ui:547
+msgctxt "gradientpage|a11y_center_y"
+msgid "Center Y"
+msgstr ""
+
+#: gradientpage.ui:561
+msgctxt "gradientpage|a11y_percentage_from"
+msgid "From color percentage"
+msgstr ""
+
+#: gradientpage.ui:575
+msgctxt "gradientpage|a11y_percentage_to"
+msgid "To color percentage"
msgstr ""
-#: gradientpage.ui:560
+#: gradientpage.ui:600
msgctxt "gradientpage|propfl"
msgid "Options"
msgstr ""
-#: gradientpage.ui:604
+#: gradientpage.ui:644
msgctxt "gradientpage|previewctl-atkobject"
msgid "Example"
msgstr ""
-#: gradientpage.ui:622
+#: gradientpage.ui:662
msgctxt "gradientpage|label2"
msgid "Preview"
msgstr ""
@@ -3745,10 +5805,9 @@ msgid "Te_xt:"
msgstr ""
#: hyperlinkinternetpage.ui:260
-#, fuzzy
msgctxt "hyperlinkinternetpage|name_label"
-msgid "N_ame:"
-msgstr "Name"
+msgid "Na_me:"
+msgstr ""
#: hyperlinkinternetpage.ui:303
msgctxt "hyperlinkinternetpage|form_label"
@@ -4212,22 +6271,22 @@ msgctxt "linedialog|LineDialog"
msgid "Line"
msgstr ""
-#: linedialog.ui:100
+#: linedialog.ui:106
msgctxt "linedialog|RID_SVXPAGE_LINE"
msgid "Line"
msgstr ""
-#: linedialog.ui:113
+#: linedialog.ui:128
msgctxt "linedialog|RID_SVXPAGE_SHADOW"
msgid "Shadow"
msgstr "Shadow"
-#: linedialog.ui:127
+#: linedialog.ui:151
msgctxt "linedialog|RID_SVXPAGE_LINE_DEF"
msgid "Line Styles"
msgstr ""
-#: linedialog.ui:141
+#: linedialog.ui:174
msgctxt "linedialog|RID_SVXPAGE_LINEEND_DEF"
msgid "Arrow Styles"
msgstr ""
@@ -4594,102 +6653,97 @@ msgctxt "macroselectordialog|label1"
msgid "Description"
msgstr "Description"
-#: menuassignpage.ui:49
+#: menuassignpage.ui:59
msgctxt "menuassignpage|contentslabel"
msgid "_Search"
msgstr ""
-#: menuassignpage.ui:65
+#: menuassignpage.ui:75
msgctxt "menuassignpage|contentslabel"
msgid "Categor_y"
msgstr ""
-#: menuassignpage.ui:80
+#: menuassignpage.ui:90
msgctxt "menuassignpage|contentslabel"
msgid "_Function"
msgstr ""
-#: menuassignpage.ui:95
+#: menuassignpage.ui:105
msgctxt "menuassignpage|label33"
msgid "Description"
msgstr ""
-#: menuassignpage.ui:107
+#: menuassignpage.ui:117
msgctxt "menuassignpage|searchEntry"
msgid "Type to search"
msgstr ""
-#: menuassignpage.ui:150
+#: menuassignpage.ui:160
msgctxt "menuassignpage|desc"
msgid "Local help is not installed."
msgstr ""
-#: menuassignpage.ui:180
+#: menuassignpage.ui:190
msgctxt "menuassignpage|add"
msgid "Add item"
msgstr ""
-#: menuassignpage.ui:210
+#: menuassignpage.ui:220
msgctxt "menuassignpage|remove"
msgid "Remove item"
msgstr ""
-#: menuassignpage.ui:257
+#: menuassignpage.ui:267
msgctxt "menuassignpage|functionbtn"
msgid "_Function"
msgstr ""
-#: menuassignpage.ui:294
-msgctxt "menuassignpage|plusbtn"
-msgid "_+"
-msgstr ""
-
-#: menuassignpage.ui:309
-msgctxt "menuassignpage|minusbtn"
-msgid "_-"
-msgstr ""
-
-#: menuassignpage.ui:378
+#: menuassignpage.ui:387
msgctxt "menuassignpage|insert"
msgid "_Insert"
msgstr ""
-#: menuassignpage.ui:396
+#: menuassignpage.ui:405
msgctxt "menuassignpage|modify"
msgid "_Modify"
msgstr ""
-#: menuassignpage.ui:414
-msgctxt "menuassignpage|resetbtn"
-msgid "Rese_t"
+#: menuassignpage.ui:423
+msgctxt "menuassignpage|defaultsbtn"
+msgid "_Defaults"
msgstr ""
-#: menuassignpage.ui:523
+#: menuassignpage.ui:434
+msgctxt "menuassignpage|defaultsbtn-atkobject"
+msgid "Resets the selected toolbar, menu, or context menu to its default state."
+msgstr ""
+
+#: menuassignpage.ui:537
msgctxt "menuassignpage|insertseparator"
msgid "Insert Separator"
msgstr ""
-#: menuassignpage.ui:531
+#: menuassignpage.ui:545
msgctxt "menuassignpage|insertsubmenu"
msgid "Insert Submenu"
msgstr ""
-#: menuassignpage.ui:543
+#: menuassignpage.ui:557
msgctxt "menuassignpage|renameItem"
msgid "Rename..."
msgstr ""
-#: menuassignpage.ui:551
+#: menuassignpage.ui:565
msgctxt "menuassignpage|changeIcon"
msgid "Change Icon..."
msgstr ""
-#: menuassignpage.ui:559
+#: menuassignpage.ui:573
msgctxt "menuassignpage|resetIcon"
msgid "Reset Icon"
msgstr ""
-#: menuassignpage.ui:567
+#: menuassignpage.ui:581
msgctxt "menuassignpage|restoreItem"
msgid "Restore Default Command"
msgstr ""
@@ -5070,96 +7124,75 @@ msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr ""
-#: numberingoptionspage.ui:336
-msgctxt "numberingoptionspage|numalign"
-msgid "Left"
-msgstr ""
-
-#: numberingoptionspage.ui:337
-msgctxt "numberingoptionspage|numalign"
-msgid "Centered"
-msgstr ""
-
-#: numberingoptionspage.ui:338
-#, fuzzy
-msgctxt "numberingoptionspage|numalign"
-msgid "Right"
-msgstr "Height"
-
-#: numberingoptionspage.ui:348
+#: numberingoptionspage.ui:333
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr ""
-#: numberingoptionspage.ui:367
+#: numberingoptionspage.ui:352
#, fuzzy
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Before"
-#: numberingoptionspage.ui:388
+#: numberingoptionspage.ui:373
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr ""
-#: numberingoptionspage.ui:424
+#: numberingoptionspage.ui:409
#, fuzzy
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "After"
-#: numberingoptionspage.ui:438
+#: numberingoptionspage.ui:423
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr ""
-#: numberingoptionspage.ui:453
+#: numberingoptionspage.ui:438
#, fuzzy
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Characters:"
-#: numberingoptionspage.ui:467
+#: numberingoptionspage.ui:452
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr ""
-#: numberingoptionspage.ui:481
+#: numberingoptionspage.ui:466
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr ""
-#: numberingoptionspage.ui:495
+#: numberingoptionspage.ui:480
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr ""
-#: numberingoptionspage.ui:509
-msgctxt "numberingoptionspage|numalignft"
-msgid "_Alignment:"
-msgstr ""
-
-#: numberingoptionspage.ui:553
+#: numberingoptionspage.ui:524
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr ""
-#: numberingoptionspage.ui:580
+#: numberingoptionspage.ui:551
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr ""
-#: numberingoptionspage.ui:596
+#: numberingoptionspage.ui:567
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr ""
-#: numberingoptionspage.ui:624
+#: numberingoptionspage.ui:595
msgctxt "numberingoptionspage|fromfile"
msgid "From file..."
msgstr ""
-#: numberingoptionspage.ui:632
+#: numberingoptionspage.ui:603
msgctxt "numberingoptionspage|gallery"
msgid "Gallery"
msgstr ""
@@ -5899,6 +7932,21 @@ msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
+#: optgeneralpage.ui:339
+msgctxt "optgeneralpage|quicklaunch"
+msgid "Load %PRODUCTNAME during system start-up"
+msgstr ""
+
+#: optgeneralpage.ui:353
+msgctxt "optgeneralpage|systray"
+msgid "Enable systray Quickstarter"
+msgstr ""
+
+#: optgeneralpage.ui:373
+msgctxt "optgeneralpage|label8"
+msgid "%PRODUCTNAME Quickstarter"
+msgstr ""
+
#: opthtmlpage.ui:90
msgctxt "opthtmlpage|size7FT"
msgid "Size _7:"
@@ -7619,21 +9667,6 @@ msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_NO"
msgid "N_one"
msgstr ""
-#: paratabspage.ui:334
-msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_POINTS"
-msgid "_........"
-msgstr ""
-
-#: paratabspage.ui:351
-msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_DASHLINE"
-msgid "_--------"
-msgstr ""
-
-#: paratabspage.ui:368
-msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_UNDERSCORE"
-msgid "______"
-msgstr ""
-
#: paratabspage.ui:385
#, fuzzy
msgctxt "paratabspage|radiobuttonBTN_FILLCHAR_OTHER"
@@ -7943,22 +9976,22 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: positionsizedialog.ui:101
+#: positionsizedialog.ui:107
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: positionsizedialog.ui:114
+#: positionsizedialog.ui:129
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: positionsizedialog.ui:128
+#: positionsizedialog.ui:152
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotation"
-#: positionsizedialog.ui:142
+#: positionsizedialog.ui:175
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
@@ -8346,49 +10379,49 @@ msgctxt "searchformatdialog|SearchFormatDialog"
msgid "Text Format "
msgstr ""
-#: searchformatdialog.ui:100
+#: searchformatdialog.ui:106
#, fuzzy
msgctxt "searchformatdialog|font"
msgid "Font"
msgstr "Font"
-#: searchformatdialog.ui:113
+#: searchformatdialog.ui:128
msgctxt "searchformatdialog|fonteffects"
msgid "Font Effects"
msgstr ""
-#: searchformatdialog.ui:127
+#: searchformatdialog.ui:151
#, fuzzy
msgctxt "searchformatdialog|position"
msgid "Position"
msgstr "Position"
-#: searchformatdialog.ui:141
+#: searchformatdialog.ui:174
msgctxt "searchformatdialog|asianlayout"
msgid "Asian Layout"
msgstr ""
-#: searchformatdialog.ui:155
+#: searchformatdialog.ui:197
msgctxt "searchformatdialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
msgstr ""
-#: searchformatdialog.ui:170
+#: searchformatdialog.ui:220
msgctxt "searchformatdialog|labelTP_PARA_ALIGN"
msgid "Alignment"
msgstr ""
-#: searchformatdialog.ui:185
+#: searchformatdialog.ui:244
msgctxt "searchformatdialog|labelTP_PARA_EXT"
msgid "Text Flow"
msgstr ""
-#: searchformatdialog.ui:199
+#: searchformatdialog.ui:268
msgctxt "searchformatdialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
msgstr ""
-#: searchformatdialog.ui:213
+#: searchformatdialog.ui:291
msgctxt "searchformatdialog|background"
msgid "Highlighting"
msgstr ""
@@ -8493,27 +10526,27 @@ msgctxt "shadowtabpage|TSB_SHOW_SHADOW"
msgid "_Use shadow"
msgstr ""
-#: shadowtabpage.ui:123
+#: shadowtabpage.ui:122
msgctxt "shadowtabpage|FT_DISTANCE"
msgid "_Distance:"
msgstr ""
-#: shadowtabpage.ui:159
+#: shadowtabpage.ui:157
msgctxt "shadowtabpage|FT_TRANSPARENT"
msgid "_Transparency:"
msgstr ""
-#: shadowtabpage.ui:180
+#: shadowtabpage.ui:177
msgctxt "shadowtabpage|FT_SHADOW_COLOR"
msgid "_Color:"
msgstr ""
-#: shadowtabpage.ui:223
+#: shadowtabpage.ui:220
msgctxt "shadowtabpage|CTL_COLOR_PREVIEW-atkobject"
msgid "Example"
msgstr ""
-#: shadowtabpage.ui:248
+#: shadowtabpage.ui:245
msgctxt "shadowtabpage|label"
msgid "Properties"
msgstr ""
@@ -9201,12 +11234,12 @@ msgctxt "textdialog|TextDialog"
msgid "Text"
msgstr ""
-#: textdialog.ui:100
+#: textdialog.ui:106
msgctxt "textdialog|RID_SVXPAGE_TEXTATTR"
msgid "Text"
msgstr ""
-#: textdialog.ui:113
+#: textdialog.ui:128
msgctxt "textdialog|RID_SVXPAGE_TEXTANIMATION"
msgid "Text Animation"
msgstr ""
@@ -9708,2089 +11741,3 @@ msgstr "~Book mode"
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "View layout"
-
-#: personalization.hrc:31
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "LibreOffice"
-msgstr ""
-
-#: personalization.hrc:32
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Abstract"
-msgstr ""
-
-#: personalization.hrc:33
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Color"
-msgstr ""
-
-#: personalization.hrc:34
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Music"
-msgstr ""
-
-#: personalization.hrc:35
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Nature"
-msgstr ""
-
-#: personalization.hrc:36
-msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
-msgid "Solid"
-msgstr ""
-
-#: strings.hrc:24
-msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
-msgid "Configuration"
-msgstr "Configuration"
-
-#: strings.hrc:25
-msgctxt "RID_SVXSTR_KEY_WORK_PATH"
-msgid "My Documents"
-msgstr "My Documents"
-
-#: strings.hrc:26
-msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
-msgid "Images"
-msgstr ""
-
-#: strings.hrc:27
-msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
-msgid "Icons"
-msgstr "Icons"
-
-#: strings.hrc:28
-msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
-msgid "Palettes"
-msgstr "Palettes"
-
-#: strings.hrc:29
-msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
-msgid "Backups"
-msgstr "Backups"
-
-#: strings.hrc:30
-msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
-msgid "Modules"
-msgstr "Modules"
-
-#: strings.hrc:31
-msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
-msgid "Templates"
-msgstr "Templates"
-
-#: strings.hrc:32
-msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
-msgid "AutoText"
-msgstr "AutoText"
-
-#: strings.hrc:33
-#, fuzzy
-msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
-msgid "Dictionaries"
-msgstr "Dictionaries"
-
-#: strings.hrc:34
-msgctxt "RID_SVXSTR_KEY_HELP_DIR"
-msgid "Help"
-msgstr "Help"
-
-#: strings.hrc:35
-msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
-msgid "Gallery"
-msgstr "Gallery"
-
-#: strings.hrc:36
-msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
-msgid "Message Storage"
-msgstr "Message Storage"
-
-#: strings.hrc:37
-msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
-msgid "Temporary files"
-msgstr "Temporary files"
-
-#: strings.hrc:38
-msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
-msgid "Plug-ins"
-msgstr "Plug-ins"
-
-#: strings.hrc:39
-msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
-msgid "Folder Bookmarks"
-msgstr "Folder Bookmarks"
-
-#: strings.hrc:40
-msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
-msgid "Filters"
-msgstr "Filters"
-
-#: strings.hrc:41
-msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
-msgid "Add-ins"
-msgstr "Add-ins"
-
-#: strings.hrc:42
-msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
-msgid "User Configuration"
-msgstr "User Configuration"
-
-#: strings.hrc:43
-msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
-msgid "User-defined dictionaries"
-msgstr "User-defined dictionaries"
-
-#: strings.hrc:44
-msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
-msgid "Classification"
-msgstr ""
-
-#: strings.hrc:45
-msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
-msgid "AutoCorrect"
-msgstr "AutoCorrect"
-
-#: strings.hrc:46
-msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
-msgid "Writing aids"
-msgstr "Writing aids"
-
-#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: strings.hrc:48
-#, c-format
-msgctxt "RID_SVXSTR_NEW_MENU"
-msgid "New Menu %n"
-msgstr "New Menu %n"
-
-#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: strings.hrc:50
-#, c-format
-msgctxt "RID_SVXSTR_NEW_TOOLBAR"
-msgid "New Toolbar %n"
-msgstr "New Toolbar %n"
-
-#: strings.hrc:51
-msgctxt "RID_SVXSTR_MOVE_MENU"
-msgid "Move Menu"
-msgstr "Move Menu"
-
-#: strings.hrc:52
-msgctxt "RID_SVXSTR_ADD_SUBMENU"
-msgid "Add Submenu"
-msgstr "Add Submenu"
-
-#: strings.hrc:53
-msgctxt "RID_SVXSTR_SUBMENU_NAME"
-msgid "Submenu name"
-msgstr "Submenu name"
-
-#: strings.hrc:54
-msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
-msgid "Are you sure to delete the image?"
-msgstr "Are you sure to delete the image?"
-
-#: strings.hrc:55
-msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
-msgid ""
-"The icon %ICONNAME is already contained in the image list.\n"
-"Would you like to replace the existing icon?"
-msgstr ""
-"The icon %ICONNAME is already contained in the image list.\n"
-"Would you like to replace the existing icon?"
-
-#: strings.hrc:56
-msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
-msgid "Confirm Icon Replacement"
-msgstr "Confirm Icon Replacement"
-
-#: strings.hrc:57
-msgctxt "RID_SVXSTR_YESTOALL"
-msgid "Yes to All"
-msgstr "Yes to All"
-
-#: strings.hrc:58
-#, fuzzy
-msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
-msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
-msgstr "There are no more commands on the toolbar. Do you want to delete the toolbar?"
-
-#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
-#. and will be replaced at runtime by the name of the selected application
-#. or document.
-#: strings.hrc:63
-msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
-msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
-
-#: strings.hrc:64
-msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
-msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
-
-#: strings.hrc:65
-#, fuzzy
-msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
-msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
-msgstr "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
-
-#: strings.hrc:66
-msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
-msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
-msgstr ""
-
-#: strings.hrc:67
-msgctxt "RID_SVXSTR_MNUCFG_ALREADY_INCLUDED"
-msgid "Function is already included in this popup."
-msgstr "Function is already included in this popup."
-
-#: strings.hrc:68
-msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
-msgid "~New name"
-msgstr "~New name"
-
-#: strings.hrc:69
-msgctxt "RID_SVXSTR_RENAME_MENU"
-msgid "Rename Menu"
-msgstr "Rename Menu"
-
-#: strings.hrc:70
-msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
-msgid "Rename Toolbar"
-msgstr "Rename Toolbar"
-
-#: strings.hrc:72
-msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
-msgid "Close"
-msgstr "Close"
-
-#: strings.hrc:73
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
-msgid "Mouse over object"
-msgstr "Mouse over object"
-
-#: strings.hrc:74
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
-msgid "Trigger hyperlink"
-msgstr "Trigger hyperlink"
-
-#: strings.hrc:75
-msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
-msgid "Mouse leaves object"
-msgstr "Mouse leaves object"
-
-#: strings.hrc:76
-msgctxt "RID_SVXSTR_HYPDLG_NOVALIDFILENAME"
-msgid "Please type in a valid file name."
-msgstr "Please type in a valid file name."
-
-#: strings.hrc:77
-msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP"
-msgid "Internet"
-msgstr "Internet"
-
-#: strings.hrc:78
-#, fuzzy
-msgctxt "RID_SVXSTR_HYPERDLG_HLINETTP_HELP"
-msgid "This is where you create a hyperlink to a Web page or FTP server connection."
-msgstr "This is where you create a hyperlink to a Web page, FTP server or Telnet connection."
-
-#: strings.hrc:79
-msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP"
-msgid "Mail"
-msgstr ""
-
-#: strings.hrc:80
-msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
-msgid "This is where you create a hyperlink to an e-mail address."
-msgstr ""
-
-#: strings.hrc:81
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
-msgid "Document"
-msgstr "Document"
-
-#: strings.hrc:82
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP_HELP"
-msgid "This is where you create a hyperlink to an existing document or a target within a document."
-msgstr "This is where you create a hyperlink to an existing document or a target within a document."
-
-#: strings.hrc:83
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP"
-msgid "New Document"
-msgstr "New Document"
-
-#: strings.hrc:84
-msgctxt "RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP"
-msgid "This is where you create a new document to which the new link points."
-msgstr "This is where you create a new document to which the new link points."
-
-#: strings.hrc:85
-msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
-msgid "Button"
-msgstr "Button"
-
-#: strings.hrc:86
-msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
-msgid "Text"
-msgstr "Text"
-
-#: strings.hrc:87
-msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
-msgid "The file already exists. Overwrite?"
-msgstr "The file already exists. Overwrite?"
-
-#: strings.hrc:89
-msgctxt "RID_SVXSTR_ERR_TEXTNOTFOUND"
-msgid "No alternatives found."
-msgstr "No alternatives found."
-
-#: strings.hrc:90
-msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
-msgid "Select File for Floating Frame"
-msgstr "Select File for Floating Frame"
-
-#: strings.hrc:91
-msgctxt "RID_SVXSTR_ALLFUNCTIONS"
-msgid "All categories"
-msgstr ""
-
-#: strings.hrc:92
-msgctxt "RID_SVXSTR_MYMACROS"
-msgid "My Macros"
-msgstr "My Macros"
-
-#: strings.hrc:93
-msgctxt "RID_SVXSTR_PRODMACROS"
-msgid "%PRODUCTNAME Macros"
-msgstr "%PRODUCTNAME Macros"
-
-#: strings.hrc:94
-msgctxt "RID_SVXSTR_SELECTOR_ADD_COMMANDS"
-msgid "Add Commands"
-msgstr "Add Commands"
-
-#: strings.hrc:95
-#, fuzzy
-msgctxt "RID_SVXSTR_SELECTOR_RUN"
-msgid "Run"
-msgstr "R~un"
-
-#: strings.hrc:96
-msgctxt "RID_SVXSTR_ROW"
-msgid "Insert Rows"
-msgstr "Insert Rows"
-
-#: strings.hrc:97
-msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
-msgid "Remove from Favorites"
-msgstr ""
-
-#: strings.hrc:98
-msgctxt "RID_SVXSTR_ADD_FAVORITES"
-msgid "Add to Favorites"
-msgstr ""
-
-#. PPI is pixel per inch, %1 is a number
-#: strings.hrc:100
-msgctxt "RID_SVXSTR_PPI"
-msgid "(%1 PPI)"
-msgstr ""
-
-#: strings.hrc:101
-#, fuzzy
-msgctxt "RID_SVXSTR_COL"
-msgid "Insert Columns"
-msgstr "~Insert Columns"
-
-#: strings.hrc:102
-#, fuzzy
-msgctxt "RID_SVXSTR_AUTO_ENTRY"
-msgid "Automatic"
-msgstr "Automatic"
-
-#: strings.hrc:103
-msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
-msgid "Link"
-msgstr ""
-
-#: strings.hrc:104
-msgctxt "RID_SVXSTR_LOADACCELCONFIG"
-msgid "Load Keyboard Configuration"
-msgstr ""
-
-#: strings.hrc:105
-msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
-msgid "Save Keyboard Configuration"
-msgstr ""
-
-#: strings.hrc:106
-msgctxt "RID_SVXSTR_FILTERNAME_CFG"
-msgid "Configuration (*.cfg)"
-msgstr ""
-
-#: strings.hrc:107
-msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
-msgid "Targets do not exist in the document."
-msgstr "Targets do not exist in the document."
-
-#: strings.hrc:108
-msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
-msgid "Couldn't open the document."
-msgstr "Couldn't open the document."
-
-#: strings.hrc:109
-msgctxt "RID_SVXSTR_EDITHINT"
-msgid "[Enter text here]"
-msgstr "[Enter text here]"
-
-#: strings.hrc:110
-msgctxt "RID_SVXSTR_HANGUL"
-msgid "Hangul"
-msgstr "Hangul"
-
-#: strings.hrc:111
-msgctxt "RID_SVXSTR_HANJA"
-msgid "Hanja"
-msgstr "Hanja"
-
-#: strings.hrc:112
-msgctxt "RID_SVXSTR_BASICMACROS"
-msgid "BASIC Macros"
-msgstr ""
-
-#: strings.hrc:113
-msgctxt "RID_SVXSTR_GROUP_STYLES"
-msgid "Styles"
-msgstr ""
-
-#: strings.hrc:115
-msgctxt "RID_SVXSTR_EVENT_STARTAPP"
-msgid "Start Application"
-msgstr "Start Application"
-
-#: strings.hrc:116
-msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
-msgid "Close Application"
-msgstr "Close Application"
-
-#: strings.hrc:117
-msgctxt "RID_SVXSTR_EVENT_NEWDOC"
-msgid "New Document"
-msgstr "New Document"
-
-#: strings.hrc:118
-msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
-msgid "Document closed"
-msgstr "Document closed"
-
-#: strings.hrc:119
-msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
-msgid "Document is going to be closed"
-msgstr "Document is going to be closed"
-
-#: strings.hrc:120
-msgctxt "RID_SVXSTR_EVENT_OPENDOC"
-msgid "Open Document"
-msgstr "Open Document"
-
-#: strings.hrc:121
-msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
-msgid "Save Document"
-msgstr "Save Document"
-
-#: strings.hrc:122
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
-msgid "Save Document As"
-msgstr "Save Document As"
-
-#: strings.hrc:123
-msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
-msgid "Document has been saved"
-msgstr "Document has been saved"
-
-#: strings.hrc:124
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
-msgid "Document has been saved as"
-msgstr "Document has been saved as"
-
-#: strings.hrc:125
-msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
-msgid "Activate Document"
-msgstr "Activate Document"
-
-#: strings.hrc:126
-msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
-msgid "Deactivate Document"
-msgstr "Deactivate Document"
-
-#: strings.hrc:127
-msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
-msgid "Print Document"
-msgstr "Print Document"
-
-#: strings.hrc:128
-msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
-msgid "'Modified' status was changed"
-msgstr "'Modified' status was changed"
-
-#: strings.hrc:129
-msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
-msgid "Printing of form letters started"
-msgstr "Printing of form letters started"
-
-#: strings.hrc:130
-msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
-msgid "Printing of form letters finished"
-msgstr "Printing of form letters finished"
-
-#: strings.hrc:131
-msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
-msgid "Merging of form fields started"
-msgstr "Merging of form fields started"
-
-#: strings.hrc:132
-msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
-msgid "Merging of form fields finished"
-msgstr "Merging of form fields finished"
-
-#: strings.hrc:133
-msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
-msgid "Changing the page count"
-msgstr "Changing the page count"
-
-#: strings.hrc:134
-msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
-msgid "Loaded a sub component"
-msgstr "Loaded a sub component"
-
-#: strings.hrc:135
-msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
-msgid "Closed a sub component"
-msgstr "Closed a sub component"
-
-#: strings.hrc:136
-msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
-msgid "Fill parameters"
-msgstr "Fill parameters"
-
-#: strings.hrc:137
-msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
-msgid "Execute action"
-msgstr "Execute action"
-
-#: strings.hrc:138
-msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
-msgid "After updating"
-msgstr "After updating"
-
-#: strings.hrc:139
-msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
-msgid "Before updating"
-msgstr "Before updating"
-
-#: strings.hrc:140
-msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
-msgid "Before record action"
-msgstr "Before record action"
-
-#: strings.hrc:141
-msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
-msgid "After record action"
-msgstr "After record action"
-
-#: strings.hrc:142
-msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
-msgid "Confirm deletion"
-msgstr "Confirm deletion"
-
-#: strings.hrc:143
-msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
-msgid "Error occurred"
-msgstr "Error occurred"
-
-#: strings.hrc:144
-msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
-msgid "While adjusting"
-msgstr "While adjusting"
-
-#: strings.hrc:145
-msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
-msgid "When receiving focus"
-msgstr "When receiving focus"
-
-#: strings.hrc:146
-msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
-msgid "When losing focus"
-msgstr "When losing focus"
-
-#: strings.hrc:147
-msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
-msgid "Item status changed"
-msgstr "Item status changed"
-
-#: strings.hrc:148
-msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
-msgid "Key pressed"
-msgstr "Key pressed"
-
-#: strings.hrc:149
-msgctxt "RID_SVXSTR_EVENT_KEYUP"
-msgid "Key released"
-msgstr "Key released"
-
-#: strings.hrc:150
-msgctxt "RID_SVXSTR_EVENT_LOADED"
-msgid "When loading"
-msgstr "When loading"
-
-#: strings.hrc:151
-msgctxt "RID_SVXSTR_EVENT_RELOADING"
-msgid "Before reloading"
-msgstr "Before reloading"
-
-#: strings.hrc:152
-msgctxt "RID_SVXSTR_EVENT_RELOADED"
-msgid "When reloading"
-msgstr "When reloading"
-
-#: strings.hrc:153
-msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
-msgid "Mouse moved while key pressed"
-msgstr "Mouse moved while key pressed"
-
-#: strings.hrc:154
-msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
-msgid "Mouse inside"
-msgstr "Mouse inside"
-
-#: strings.hrc:155
-msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
-msgid "Mouse outside"
-msgstr "Mouse outside"
-
-#: strings.hrc:156
-msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
-msgid "Mouse moved"
-msgstr "Mouse moved"
-
-#: strings.hrc:157
-msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
-msgid "Mouse button pressed"
-msgstr "Mouse button pressed"
-
-#: strings.hrc:158
-msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
-msgid "Mouse button released"
-msgstr "Mouse button released"
-
-#: strings.hrc:159
-msgctxt "RID_SVXSTR_EVENT_POSITIONING"
-msgid "Before record change"
-msgstr "Before record change"
-
-#: strings.hrc:160
-msgctxt "RID_SVXSTR_EVENT_POSITIONED"
-msgid "After record change"
-msgstr "After record change"
-
-#: strings.hrc:161
-msgctxt "RID_SVXSTR_EVENT_RESETTED"
-msgid "After resetting"
-msgstr "After resetting"
-
-#: strings.hrc:162
-msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
-msgid "Prior to reset"
-msgstr "Prior to reset"
-
-#: strings.hrc:163
-msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
-msgid "Approve action"
-msgstr "Approve action"
-
-#: strings.hrc:164
-msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
-msgid "Before submitting"
-msgstr "Before submitting"
-
-#: strings.hrc:165
-msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
-msgid "Text modified"
-msgstr "Text modified"
-
-#: strings.hrc:166
-msgctxt "RID_SVXSTR_EVENT_UNLOADING"
-msgid "Before unloading"
-msgstr "Before unloading"
-
-#: strings.hrc:167
-msgctxt "RID_SVXSTR_EVENT_UNLOADED"
-msgid "When unloading"
-msgstr "When unloading"
-
-#: strings.hrc:168
-msgctxt "RID_SVXSTR_EVENT_CHANGED"
-msgid "Changed"
-msgstr "Changed"
-
-#: strings.hrc:169
-msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
-msgid "Document created"
-msgstr "Document created"
-
-#: strings.hrc:170
-msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
-msgid "Document loading finished"
-msgstr "Document loading finished"
-
-#: strings.hrc:171
-msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
-msgid "Saving of document failed"
-msgstr "Saving of document failed"
-
-#: strings.hrc:172
-msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
-msgid "'Save as' has failed"
-msgstr "'Save as' has failed"
-
-#: strings.hrc:173
-msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
-msgid "Storing or exporting copy of document"
-msgstr "Storing or exporting copy of document"
-
-#: strings.hrc:174
-msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
-msgid "Document copy has been created"
-msgstr "Document copy has been created"
-
-#: strings.hrc:175
-msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
-msgid "Creating of document copy failed"
-msgstr "Creating of document copy failed"
-
-#: strings.hrc:176
-msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
-msgid "View created"
-msgstr "View created"
-
-#: strings.hrc:177
-msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
-msgid "View is going to be closed"
-msgstr "View is going to be closed"
-
-#: strings.hrc:178
-msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
-msgid "View closed"
-msgstr "View closed"
-
-#: strings.hrc:179
-msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
-msgid "Document title changed"
-msgstr "Document title changed"
-
-#: strings.hrc:180
-msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
-msgid "Selection changed"
-msgstr "Selection changed"
-
-#: strings.hrc:181
-msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
-msgid "Double click"
-msgstr "Double click"
-
-#: strings.hrc:182
-msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
-msgid "Right click"
-msgstr "Right click"
-
-#: strings.hrc:183
-msgctxt "RID_SVXSTR_EVENT_CALCULATE"
-msgid "Formulas calculated"
-msgstr "Formulas calculated"
-
-#: strings.hrc:184
-msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
-msgid "Content changed"
-msgstr "Content changed"
-
-#: strings.hrc:186
-msgctxt "RID_STR_SEARCH_ANYWHERE"
-msgid "anywhere in the field"
-msgstr "anywhere in the field"
-
-#: strings.hrc:187
-msgctxt "RID_STR_SEARCH_BEGINNING"
-msgid "beginning of field"
-msgstr "beginning of field"
-
-#: strings.hrc:188
-msgctxt "RID_STR_SEARCH_END"
-msgid "end of field"
-msgstr "end of field"
-
-#: strings.hrc:189
-msgctxt "RID_STR_SEARCH_WHOLE"
-msgid "entire field"
-msgstr "entire field"
-
-#: strings.hrc:190
-msgctxt "RID_STR_FROM_TOP"
-msgid "From top"
-msgstr "From top"
-
-#: strings.hrc:191
-msgctxt "RID_STR_FROM_BOTTOM"
-msgid "From bottom"
-msgstr "From bottom"
-
-#: strings.hrc:192
-msgctxt "RID_STR_SEARCH_NORECORD"
-msgid "No records corresponding to your data found."
-msgstr "No records corresponding to your data found."
-
-#: strings.hrc:193
-msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
-msgid "An unknown error occurred. The search could not be finished."
-msgstr "An unknown error occurred. The search could not be finished."
-
-#: strings.hrc:194
-msgctxt "RID_STR_OVERFLOW_FORWARD"
-msgid "Overflow, search continued at the beginning"
-msgstr "Overflow, search continued at the beginning"
-
-#: strings.hrc:195
-msgctxt "RID_STR_OVERFLOW_BACKWARD"
-msgid "Overflow, search continued at the end"
-msgstr "Overflow, search continued at the end"
-
-#: strings.hrc:196
-msgctxt "RID_STR_SEARCH_COUNTING"
-msgid "counting records"
-msgstr "counting records"
-
-#: strings.hrc:198
-msgctxt "RID_SVXSTR_GALLERY_NOFILES"
-msgid "<No Files>"
-msgstr "<No Files>"
-
-#: strings.hrc:199
-msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
-msgid "Object;Objects"
-msgstr "Object;Objects"
-
-#: strings.hrc:200
-#, fuzzy
-msgctxt "RID_SVXSTR_GALLERY_READONLY"
-msgid "(read-only)"
-msgstr " (read-only)"
-
-#: strings.hrc:201
-msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
-msgid "<All Files>"
-msgstr "<All Files>"
-
-#: strings.hrc:202
-msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
-msgid "This ID already exists..."
-msgstr "This ID already exists..."
-
-#: strings.hrc:204
-msgctxt "RID_MULTIPATH_DBL_ERR"
-msgid "The path %1 already exists."
-msgstr "The path %1 already exists."
-
-#: strings.hrc:205
-msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
-msgid "Select Archives"
-msgstr "Select Archives"
-
-#: strings.hrc:206
-msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
-msgid "Archives"
-msgstr "Archives"
-
-#: strings.hrc:207
-msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
-msgid "The file %1 already exists."
-msgstr "The file %1 already exists."
-
-#: strings.hrc:208
-msgctxt "RID_SVXSTR_ADD_IMAGE"
-msgid "Add Image"
-msgstr ""
-
-#: strings.hrc:210
-msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
-msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr ""
-
-#: strings.hrc:211
-msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
-msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
-msgstr ""
-
-#: strings.hrc:212
-msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
-msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
-msgstr ""
-
-#: strings.hrc:213
-msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
-msgid "Set the password by entering the same password in both boxes."
-msgstr ""
-
-#: strings.hrc:215
-#, fuzzy
-msgctxt "STR_AUTOLINK"
-msgid "Automatic"
-msgstr "Automatic"
-
-#: strings.hrc:216
-msgctxt "STR_MANUALLINK"
-msgid "Manual"
-msgstr "Manual"
-
-#: strings.hrc:217
-msgctxt "STR_BROKENLINK"
-msgid "Not available"
-msgstr "Not available"
-
-#: strings.hrc:218
-msgctxt "STR_CLOSELINKMSG"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Are you sure you want to remove the selected link?"
-
-#: strings.hrc:219
-msgctxt "STR_CLOSELINKMSG_MULTI"
-msgid "Are you sure you want to remove the selected link?"
-msgstr "Are you sure you want to remove the selected link?"
-
-#: strings.hrc:220
-msgctxt "STR_WAITINGLINK"
-msgid "Waiting"
-msgstr "Waiting"
-
-#: strings.hrc:222
-msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
-msgid "Save Screenshot As..."
-msgstr ""
-
-#. $(ROW) can be a number or the caption of the row in quotes
-#: strings.hrc:225
-msgctxt "RID_SVXSTR_DIAGRAM_ROW"
-msgid "Data Series $(ROW)"
-msgstr "Data Series $(ROW)"
-
-#: strings.hrc:227
-msgctxt "RID_SVXSTR_DRIVER_NAME"
-msgid "Driver name"
-msgstr ""
-
-#: strings.hrc:228
-msgctxt "RID_SVXSTR_POOLED_FLAG"
-msgid "Pool"
-msgstr ""
-
-#: strings.hrc:229
-msgctxt "RID_SVXSTR_POOL_TIMEOUT"
-msgid "Timeout"
-msgstr ""
-
-#: strings.hrc:230
-msgctxt "RID_SVXSTR_YES"
-msgid "Yes"
-msgstr ""
-
-#: strings.hrc:231
-msgctxt "RID_SVXSTR_NO"
-msgid "No"
-msgstr ""
-
-#: strings.hrc:233
-msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist."
-msgstr ""
-"The file\n"
-"$file$\n"
-"does not exist."
-
-#: strings.hrc:234
-msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
-msgid ""
-"The file\n"
-"$file$\n"
-"does not exist in the local file system."
-msgstr ""
-"The file\n"
-"$file$\n"
-"does not exist in the local file system."
-
-#: strings.hrc:235
-msgctxt "STR_NAME_CONFLICT"
-msgid ""
-"The name '$file$' is already used for another database.\n"
-"Please choose a different name."
-msgstr ""
-"The name '$file$' is already used for another database.\n"
-"Please choose a different name."
-
-#: strings.hrc:236
-msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
-msgid "Do you want to delete the entry?"
-msgstr "Do you want to delete the entry?"
-
-#: strings.hrc:238
-msgctxt "RID_SVXSTR_DELQUERY"
-msgid "Do you want to delete the following object?"
-msgstr "Do you want to delete the following object?"
-
-#: strings.hrc:239
-msgctxt "RID_SVXSTR_DELQUERY_TITLE"
-msgid "Confirm Deletion"
-msgstr "Confirm Deletion"
-
-#: strings.hrc:240
-msgctxt "RID_SVXSTR_DELFAILED"
-msgid "The selected object could not be deleted."
-msgstr "The selected object could not be deleted."
-
-#: strings.hrc:241
-msgctxt "RID_SVXSTR_DELFAILED_TITLE"
-msgid "Error Deleting Object"
-msgstr "Error Deleting Object"
-
-#: strings.hrc:242
-msgctxt "RID_SVXSTR_CREATEFAILED"
-msgid "The object could not be created."
-msgstr "The object could not be created."
-
-#: strings.hrc:243
-msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
-msgid " Object with the same name already exists."
-msgstr " Object with the same name already exists."
-
-#: strings.hrc:244
-msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
-msgid "Error Creating Object"
-msgstr "Error Creating Object"
-
-#: strings.hrc:245
-msgctxt "RID_SVXSTR_RENAMEFAILED"
-msgid "The object could not be renamed."
-msgstr "The object could not be renamed."
-
-#: strings.hrc:246
-msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
-msgid "Error Renaming Object"
-msgstr "Error Renaming Object"
-
-#: strings.hrc:247
-msgctxt "RID_SVXSTR_ERROR_TITLE"
-msgid "%PRODUCTNAME Error"
-msgstr "%PRODUCTNAME Error"
-
-#: strings.hrc:248
-#, c-format
-msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
-msgid "The scripting language %LANGUAGENAME is not supported."
-msgstr "The scripting language %LANGUAGENAME is not supported."
-
-#: strings.hrc:249
-#, c-format
-msgctxt "RID_SVXSTR_ERROR_RUNNING"
-msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-
-#: strings.hrc:250
-#, c-format
-msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
-msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-
-#: strings.hrc:251
-msgctxt "RID_SVXSTR_ERROR_AT_LINE"
-msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-msgstr "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-
-#: strings.hrc:252
-msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
-msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-msgstr "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
-
-#: strings.hrc:253
-#, c-format
-msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
-msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-msgstr "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
-
-#: strings.hrc:254
-msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
-msgid "Type:"
-msgstr "Type:"
-
-#: strings.hrc:255
-msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
-msgid "Message:"
-msgstr "Message:"
-
-#: strings.hrc:257
-msgctxt "RID_SVXSTR_TYPE"
-msgid "Registered name"
-msgstr ""
-
-#: strings.hrc:258
-msgctxt "RID_SVXSTR_PATH"
-msgid "Database file"
-msgstr ""
-
-#. abbreviation for "[Load]"
-#: strings.hrc:261
-msgctxt "RID_SVXSTR_HEADER1"
-msgid "[L]"
-msgstr ""
-
-#. abbreviation for "[Save]"
-#: strings.hrc:263
-msgctxt "RID_SVXSTR_HEADER2"
-msgid "[S]"
-msgstr ""
-
-#: strings.hrc:264
-msgctxt "RID_SVXSTR_CHG_MATH"
-msgid "MathType to %PRODUCTNAME Math or reverse"
-msgstr ""
-
-#: strings.hrc:265
-msgctxt "RID_SVXSTR_CHG_WRITER"
-msgid "WinWord to %PRODUCTNAME Writer or reverse"
-msgstr ""
-
-#: strings.hrc:266
-msgctxt "RID_SVXSTR_CHG_CALC"
-msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr ""
-
-#: strings.hrc:267
-msgctxt "RID_SVXSTR_CHG_IMPRESS"
-msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
-msgstr ""
-
-#: strings.hrc:268
-msgctxt "RID_SVXSTR_CHG_SMARTART"
-msgid "SmartArt to %PRODUCTNAME shapes or reverse"
-msgstr ""
-
-#: strings.hrc:270
-msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
-msgid ""
-"The specified name already exists.\n"
-"Please enter a new name."
-msgstr ""
-"The specified name already exists.\n"
-"Please enter a new name."
-
-#: strings.hrc:271
-msgctxt "STR_MODIFY"
-msgid "~Replace"
-msgstr ""
-
-#: strings.hrc:272
-msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
-msgid "Do you want to change the '%1' dictionary language?"
-msgstr "Do you want to change the '%1' dictionary language?"
-
-#: strings.hrc:274
-msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
-msgid "Do you really want to delete the color scheme?"
-msgstr "Do you really want to delete the colour scheme?"
-
-#: strings.hrc:275
-msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
-msgid "Color Scheme Deletion"
-msgstr "Colour Scheme Deletion"
-
-#: strings.hrc:276
-msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
-msgid "Save scheme"
-msgstr "Save scheme"
-
-#: strings.hrc:277
-msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
-msgid "Name of color scheme"
-msgstr "Name of colour scheme"
-
-#: strings.hrc:279
-msgctxt "RID_SVXSTR_SPELL"
-msgid "Spelling"
-msgstr ""
-
-#: strings.hrc:280
-msgctxt "RID_SVXSTR_HYPH"
-msgid "Hyphenation"
-msgstr ""
-
-#: strings.hrc:281
-msgctxt "RID_SVXSTR_THES"
-msgid "Thesaurus"
-msgstr ""
-
-#: strings.hrc:282
-msgctxt "RID_SVXSTR_GRAMMAR"
-msgid "Grammar"
-msgstr ""
-
-#: strings.hrc:283
-msgctxt "RID_SVXSTR_CAPITAL_WORDS"
-msgid "Check uppercase words"
-msgstr ""
-
-#: strings.hrc:284
-msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
-msgid "Check words with numbers "
-msgstr ""
-
-#: strings.hrc:285
-msgctxt "RID_SVXSTR_SPELL_SPECIAL"
-msgid "Check special regions"
-msgstr ""
-
-#: strings.hrc:286
-msgctxt "RID_SVXSTR_SPELL_AUTO"
-msgid "Check spelling as you type"
-msgstr ""
-
-#: strings.hrc:287
-msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
-msgid "Check grammar as you type"
-msgstr ""
-
-#: strings.hrc:288
-msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
-msgid "Minimal number of characters for hyphenation: "
-msgstr ""
-
-#: strings.hrc:289
-msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
-msgid "Characters before line break: "
-msgstr ""
-
-#: strings.hrc:290
-msgctxt "RID_SVXSTR_NUM_POST_BREAK"
-msgid "Characters after line break: "
-msgstr ""
-
-#: strings.hrc:291
-msgctxt "RID_SVXSTR_HYPH_AUTO"
-msgid "Hyphenate without inquiry"
-msgstr ""
-
-#: strings.hrc:292
-msgctxt "RID_SVXSTR_HYPH_SPECIAL"
-msgid "Hyphenate special regions"
-msgstr ""
-
-#: strings.hrc:294
-#, fuzzy
-msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
-msgid ""
-"The folder you selected does not contain a Java runtime environment.\n"
-"Please select a different folder."
-msgstr ""
-"The folder you selected does not contain a Java runtime environment.\n"
-"Please select a different folder."
-
-#: strings.hrc:295
-#, fuzzy
-msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
-msgid ""
-"The Java runtime environment you selected is not the required version.\n"
-"Please select a different folder."
-msgstr ""
-"The Java runtime environment you selected is not the required version.\n"
-"Please select a different folder."
-
-#: strings.hrc:296
-msgctxt "RID_SVXSTR_OPTIONS_RESTART"
-msgid "Please restart %PRODUCTNAME now so the new or modified values can take effect."
-msgstr ""
-
-#: strings.hrc:297
-msgctxt "RID_SVXSTR_JAVA_START_PARAM"
-msgid "Edit Parameter"
-msgstr ""
-
-#: strings.hrc:299
-msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
-msgid ""
-"Invalid value!\n"
-"\n"
-"The maximum value for a port number is 65535."
-msgstr ""
-"Invalid value!\n"
-"\n"
-"The maximum value for a port number is 65535."
-
-#: strings.hrc:301
-msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
-msgid "Left-to-right (LTR)"
-msgstr ""
-
-#: strings.hrc:302
-msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
-msgid "Right-to-left (RTL)"
-msgstr ""
-
-#: strings.hrc:303
-msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
-msgid "Use superordinate object settings"
-msgstr "Use superordinate object settings"
-
-#. page direction
-#: strings.hrc:305
-msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
-msgid "Left-to-right (horizontal)"
-msgstr "Left-to-right (horizontal)"
-
-#: strings.hrc:306
-msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
-msgid "Right-to-left (horizontal)"
-msgstr "Right-to-left (horizontal)"
-
-#: strings.hrc:307
-msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
-msgid "Right-to-left (vertical)"
-msgstr "Right-to-left (vertical)"
-
-#: strings.hrc:308
-msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
-msgid "Left-to-right (vertical)"
-msgstr "Left-to-right (vertical)"
-
-#: strings.hrc:310
-msgctxt "RID_SVXSTR_DESC_GRADIENT"
-msgid "Please enter a name for the gradient:"
-msgstr "Please enter a name for the gradient:"
-
-#: strings.hrc:311
-msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
-msgid "Please enter a name for the bitmap:"
-msgstr "Please enter a name for the bitmap:"
-
-#: strings.hrc:312
-msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
-msgid "Please enter a name for the external bitmap:"
-msgstr "Please enter a name for the external bitmap:"
-
-#: strings.hrc:313
-msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
-msgid "Please enter a name for the pattern:"
-msgstr ""
-
-#: strings.hrc:314
-msgctxt "RID_SVXSTR_DESC_LINESTYLE"
-msgid "Please enter a name for the line style:"
-msgstr "Please enter a name for the line style:"
-
-#: strings.hrc:315
-msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
-msgid ""
-"The line style was modified without saving. \n"
-"Modify the selected line style or add a new line style."
-msgstr ""
-"The line style was modified without saving. \n"
-"Modify the selected line style or add a new line style."
-
-#: strings.hrc:316
-msgctxt "RID_SVXSTR_DESC_HATCH"
-msgid "Please enter a name for the hatching:"
-msgstr "Please enter a name for the hatching:"
-
-#: strings.hrc:317
-msgctxt "RID_SVXSTR_CHANGE"
-msgid "Modify"
-msgstr "Modify"
-
-#: strings.hrc:318
-msgctxt "RID_SVXSTR_ADD"
-msgid "Add"
-msgstr "Add"
-
-#: strings.hrc:319
-msgctxt "RID_SVXSTR_DESC_COLOR"
-msgid "Please enter a name for the new color:"
-msgstr "Please enter a name for the new colour:"
-
-#: strings.hrc:320
-msgctxt "RID_SVXSTR_TABLE"
-msgid "Table"
-msgstr "Table"
-
-#: strings.hrc:321
-msgctxt "RID_SVXSTR_DESC_LINEEND"
-msgid "Please enter a name for the new arrowhead:"
-msgstr "Please enter a name for the new arrowhead:"
-
-#: strings.hrc:322
-msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
-msgid "No %1"
-msgstr "No %1"
-
-#: strings.hrc:323
-#, fuzzy
-msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
-msgid "Family"
-msgstr "Tamil"
-
-#: strings.hrc:324
-msgctxt "RID_SVXSTR_CHARNAME_FONT"
-msgid "Font"
-msgstr "Font"
-
-#: strings.hrc:325
-#, fuzzy
-msgctxt "RID_SVXSTR_CHARNAME_STYLE"
-msgid "Style"
-msgstr "Style"
-
-#: strings.hrc:326
-msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
-msgid "Typeface"
-msgstr "Typeface"
-
-#: strings.hrc:327
-msgctxt "RID_SVXSTR_CHARNAME_HIGHLIGHTING"
-msgid "Highlight Color"
-msgstr ""
-
-#: strings.hrc:328
-msgctxt "RID_SVXSTR_USE_REPLACE"
-msgid "Use replacement table"
-msgstr ""
-
-#: strings.hrc:329
-msgctxt "RID_SVXSTR_CPTL_STT_WORD"
-msgid "Correct TWo INitial CApitals"
-msgstr ""
-
-#: strings.hrc:330
-msgctxt "RID_SVXSTR_CPTL_STT_SENT"
-msgid "Capitalize first letter of every sentence"
-msgstr ""
-
-#: strings.hrc:331
-msgctxt "RID_SVXSTR_BOLD_UNDER"
-msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
-msgstr ""
-
-#: strings.hrc:332
-msgctxt "RID_SVXSTR_NO_DBL_SPACES"
-msgid "Ignore double spaces"
-msgstr ""
-
-#: strings.hrc:333
-msgctxt "RID_SVXSTR_DETECT_URL"
-msgid "URL Recognition"
-msgstr ""
-
-#: strings.hrc:334
-msgctxt "RID_SVXSTR_DASH"
-msgid "Replace dashes"
-msgstr ""
-
-#: strings.hrc:335
-msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
-msgid "Correct accidental use of cAPS LOCK key"
-msgstr ""
-
-#: strings.hrc:336
-msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
-msgid "Add non-breaking space before specific punctuation marks in French text"
-msgstr ""
-
-#: strings.hrc:337
-msgctxt "RID_SVXSTR_ORDINAL"
-msgid "Format ordinal numbers suffixes (1st -> 1^st)"
-msgstr ""
-
-#: strings.hrc:338
-msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
-msgid "Remove blank paragraphs"
-msgstr ""
-
-#: strings.hrc:339
-msgctxt "RID_SVXSTR_USER_STYLE"
-msgid "Replace Custom Styles"
-msgstr ""
-
-#: strings.hrc:340
-msgctxt "RID_SVXSTR_BULLET"
-msgid "Replace bullets with: "
-msgstr ""
-
-#: strings.hrc:341
-msgctxt "RID_SVXSTR_RIGHT_MARGIN"
-msgid "Combine single line paragraphs if length greater than"
-msgstr ""
-
-#: strings.hrc:342
-msgctxt "RID_SVXSTR_NUM"
-msgid "Bulleted and numbered lists. Bullet symbol: "
-msgstr ""
-
-#: strings.hrc:343
-msgctxt "RID_SVXSTR_BORDER"
-msgid "Apply border"
-msgstr ""
-
-#: strings.hrc:344
-msgctxt "RID_SVXSTR_CREATE_TABLE"
-msgid "Create table"
-msgstr ""
-
-#: strings.hrc:345
-msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
-msgid "Apply Styles"
-msgstr ""
-
-#: strings.hrc:346
-msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
-msgid "Delete spaces and tabs at beginning and end of paragraph"
-msgstr ""
-
-#: strings.hrc:347
-msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
-msgid "Delete spaces and tabs at end and start of line"
-msgstr ""
-
-#: strings.hrc:348
-msgctxt "RID_SVXSTR_CONNECTOR"
-msgid "Connector"
-msgstr ""
-
-#: strings.hrc:349
-msgctxt "RID_SVXSTR_DIMENSION_LINE"
-msgid "Dimension line"
-msgstr ""
-
-#: strings.hrc:350
-msgctxt "RID_SVXSTR_LOAD_ERROR"
-msgid "The selected module could not be loaded."
-msgstr ""
-
-#: strings.hrc:351
-msgctxt "RID_SVXSTR_STARTQUOTE"
-msgid "Start Quote"
-msgstr ""
-
-#: strings.hrc:352
-msgctxt "RID_SVXSTR_ENDQUOTE"
-msgid "End Quote"
-msgstr ""
-
-#: strings.hrc:354
-msgctxt "RID_SVXSTR_SELECTEDPERSONA"
-msgid "Selected Theme: "
-msgstr ""
-
-#: strings.hrc:355
-msgctxt "RID_SVXSTR_SEARCHING"
-msgid "Searching, please wait..."
-msgstr ""
-
-#: strings.hrc:356
-msgctxt "RID_SVXSTR_SEARCHERROR"
-msgid "Cannot open %1, please try again later."
-msgstr ""
-
-#: strings.hrc:357
-msgctxt "RID_SVXSTR_NORESULTS"
-msgid "No results found."
-msgstr ""
-
-#: strings.hrc:358
-msgctxt "RID_SVXSTR_APPLYPERSONA"
-msgid "Applying Theme..."
-msgstr ""
-
-#: strings.hrc:360
-msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
-msgid "Set No Borders"
-msgstr "Set No Borders"
-
-#: strings.hrc:361
-msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
-msgid "Set Outer Border Only"
-msgstr "Set Outer Border Only"
-
-#: strings.hrc:362
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
-msgid "Set Outer Border and Horizontal Lines"
-msgstr "Set Outer Border and Horizontal Lines"
-
-#: strings.hrc:363
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
-msgid "Set Outer Border and All Inner Lines"
-msgstr "Set Outer Border and All Inner Lines"
-
-#: strings.hrc:364
-msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
-msgid "Set Outer Border Without Changing Inner Lines"
-msgstr "Set Outer Border Without Changing Inner Lines"
-
-#: strings.hrc:365
-msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
-msgid "Set Diagonal Lines Only"
-msgstr "Set Diagonal Lines Only"
-
-#: strings.hrc:366
-msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
-msgid "Set All Four Borders"
-msgstr "Set All Four Borders"
-
-#: strings.hrc:367
-msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
-msgid "Set Left and Right Borders Only"
-msgstr "Set Left and Right Borders Only"
-
-#: strings.hrc:368
-msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
-msgid "Set Top and Bottom Borders Only"
-msgstr "Set Top and Bottom Borders Only"
-
-#: strings.hrc:369
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Set Left Border Only"
-msgstr "Set Left Border Only"
-
-#: strings.hrc:370
-msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
-msgid "Set Top and Bottom Borders, and All Inner Lines"
-msgstr "Set Top and Bottom Borders, and All Inner Lines"
-
-#: strings.hrc:371
-msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
-msgid "Set Left and Right Borders, and All Inner Lines"
-msgstr "Set Left and Right Borders, and All Inner Lines"
-
-#: strings.hrc:372
-msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
-msgid "No Shadow"
-msgstr "No Shadow"
-
-#: strings.hrc:373
-msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
-msgid "Cast Shadow to Bottom Right"
-msgstr "Cast Shadow to Bottom Right"
-
-#: strings.hrc:374
-msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
-msgid "Cast Shadow to Top Right"
-msgstr "Cast Shadow to Top Right"
-
-#: strings.hrc:375
-msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
-msgid "Cast Shadow to Bottom Left"
-msgstr "Cast Shadow to Bottom Left"
-
-#: strings.hrc:376
-msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
-msgid "Cast Shadow to Top Left"
-msgstr "Cast Shadow to Top Left"
-
-#: treeopt.hrc:30
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "%PRODUCTNAME"
-msgstr ""
-
-#: treeopt.hrc:31
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "User Data"
-msgstr ""
-
-#: treeopt.hrc:32
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:33
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:34
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:35
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Paths"
-msgstr ""
-
-#: treeopt.hrc:36
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Fonts"
-msgstr ""
-
-#: treeopt.hrc:37
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Security"
-msgstr ""
-
-#: treeopt.hrc:38
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Personalization"
-msgstr ""
-
-#: treeopt.hrc:39
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Application Colors"
-msgstr ""
-
-#: treeopt.hrc:40
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Accessibility"
-msgstr ""
-
-#: treeopt.hrc:41
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Advanced"
-msgstr ""
-
-#: treeopt.hrc:42
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Basic IDE"
-msgstr ""
-
-#: treeopt.hrc:43
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "Online Update"
-msgstr ""
-
-#: treeopt.hrc:44
-msgctxt "SID_GENERAL_OPTIONS_RES"
-msgid "OpenCL"
-msgstr ""
-
-#: treeopt.hrc:49
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Language Settings"
-msgstr ""
-
-#: treeopt.hrc:50
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Languages"
-msgstr ""
-
-#: treeopt.hrc:51
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Writing Aids"
-msgstr ""
-
-#: treeopt.hrc:52
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Searching in Japanese"
-msgstr ""
-
-#: treeopt.hrc:53
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Asian Layout"
-msgstr ""
-
-#: treeopt.hrc:54
-msgctxt "SID_LANGUAGE_OPTIONS_RES"
-msgid "Complex Text Layout"
-msgstr ""
-
-#: treeopt.hrc:59
-msgctxt "SID_INET_DLG_RES"
-msgid "Internet"
-msgstr ""
-
-#: treeopt.hrc:60
-msgctxt "SID_INET_DLG_RES"
-msgid "Proxy"
-msgstr ""
-
-#: treeopt.hrc:61
-msgctxt "SID_INET_DLG_RES"
-msgid "E-mail"
-msgstr ""
-
-#: treeopt.hrc:66
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "%PRODUCTNAME Writer"
-msgstr ""
-
-#: treeopt.hrc:67
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:68
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:69
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Formatting Aids"
-msgstr ""
-
-#: treeopt.hrc:70
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Grid"
-msgstr ""
-
-#: treeopt.hrc:71
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Basic Fonts (Western)"
-msgstr ""
-
-#: treeopt.hrc:72
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Basic Fonts (Asian)"
-msgstr ""
-
-#: treeopt.hrc:73
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Basic Fonts (CTL)"
-msgstr ""
-
-#: treeopt.hrc:74
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:75
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Table"
-msgstr ""
-
-#: treeopt.hrc:76
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Changes"
-msgstr ""
-
-#: treeopt.hrc:77
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Comparison"
-msgstr ""
-
-#: treeopt.hrc:78
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Compatibility"
-msgstr ""
-
-#: treeopt.hrc:79
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "AutoCaption"
-msgstr ""
-
-#: treeopt.hrc:80
-msgctxt "SID_SW_EDITOPTIONS_RES"
-msgid "Mail Merge E-mail"
-msgstr ""
-
-#: treeopt.hrc:85
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "%PRODUCTNAME Writer/Web"
-msgstr ""
-
-#: treeopt.hrc:86
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:87
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "Formatting Aids"
-msgstr ""
-
-#: treeopt.hrc:88
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "Grid"
-msgstr ""
-
-#: treeopt.hrc:89
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:90
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "Table"
-msgstr ""
-
-#: treeopt.hrc:91
-msgctxt "SID_SW_ONLINEOPTIONS_RES"
-msgid "Background"
-msgstr ""
-
-#: treeopt.hrc:96
-msgctxt "SID_SM_EDITOPTIONS_RES"
-msgid "%PRODUCTNAME Math"
-msgstr ""
-
-#: treeopt.hrc:97
-msgctxt "SID_SM_EDITOPTIONS_RES"
-msgid "Settings"
-msgstr ""
-
-#: treeopt.hrc:102
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "%PRODUCTNAME Calc"
-msgstr ""
-
-#: treeopt.hrc:103
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:104
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Defaults"
-msgstr ""
-
-#: treeopt.hrc:105
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:106
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Calculate"
-msgstr ""
-
-#: treeopt.hrc:107
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Formula"
-msgstr ""
-
-#: treeopt.hrc:108
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Sort Lists"
-msgstr ""
-
-#: treeopt.hrc:109
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Changes"
-msgstr ""
-
-#: treeopt.hrc:110
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Compatibility"
-msgstr ""
-
-#: treeopt.hrc:111
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Grid"
-msgstr ""
-
-#: treeopt.hrc:112
-msgctxt "SID_SC_EDITOPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:117
-msgctxt "SID_SD_EDITOPTIONS_RES"
-msgid "%PRODUCTNAME Impress"
-msgstr ""
-
-#: treeopt.hrc:118
-msgctxt "SID_SD_EDITOPTIONS_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:119
-msgctxt "SID_SD_EDITOPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:120
-msgctxt "SID_SD_EDITOPTIONS_RES"
-msgid "Grid"
-msgstr ""
-
-#: treeopt.hrc:121
-msgctxt "SID_SD_EDITOPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:126
-msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
-msgid "%PRODUCTNAME Draw"
-msgstr ""
-
-#: treeopt.hrc:127
-msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:128
-msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
-msgid "View"
-msgstr ""
-
-#: treeopt.hrc:129
-msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
-msgid "Grid"
-msgstr ""
-
-#: treeopt.hrc:130
-msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
-msgid "Print"
-msgstr ""
-
-#: treeopt.hrc:135
-msgctxt "SID_SCH_EDITOPTIONS_RES"
-msgid "Charts"
-msgstr ""
-
-#: treeopt.hrc:136
-msgctxt "SID_SCH_EDITOPTIONS_RES"
-msgid "Default Colors"
-msgstr ""
-
-#: treeopt.hrc:141
-msgctxt "SID_FILTER_DLG_RES"
-msgid "Load/Save"
-msgstr ""
-
-#: treeopt.hrc:142
-msgctxt "SID_FILTER_DLG_RES"
-msgid "General"
-msgstr ""
-
-#: treeopt.hrc:143
-msgctxt "SID_FILTER_DLG_RES"
-msgid "VBA Properties"
-msgstr ""
-
-#: treeopt.hrc:144
-msgctxt "SID_FILTER_DLG_RES"
-msgid "Microsoft Office"
-msgstr ""
-
-#: treeopt.hrc:145
-msgctxt "SID_FILTER_DLG_RES"
-msgid "HTML Compatibility"
-msgstr ""
-
-#: treeopt.hrc:150
-msgctxt "SID_SB_STARBASEOPTIONS_RES"
-msgid "%PRODUCTNAME Base"
-msgstr ""
-
-#: treeopt.hrc:151
-msgctxt "SID_SB_STARBASEOPTIONS_RES"
-msgid "Connections"
-msgstr ""
-
-#: treeopt.hrc:152
-msgctxt "SID_SB_STARBASEOPTIONS_RES"
-msgid "Databases"
-msgstr ""
diff --git a/source/en-ZA/dbaccess/messages.po b/source/en-ZA/dbaccess/messages.po
index 5e1a7c6e521..6492f75b3b2 100644
--- a/source/en-ZA/dbaccess/messages.po
+++ b/source/en-ZA/dbaccess/messages.po
@@ -1,9 +1,9 @@
-#. extracted from dbaccess/uiconfig/ui
+#. extracted from dbaccess/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,1903 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: admindialog.ui:8
-msgctxt "admindialog|AdminDialog"
-msgid "Database Properties"
-msgstr ""
-
-#: admindialog.ui:87
-msgctxt "admindialog|advanced"
-msgid "Advanced Properties"
-msgstr ""
-
-#: advancedsettingsdialog.ui:8
-msgctxt "advancedsettingsdialog|AdvancedSettingsDialog"
-msgid "Advanced Settings"
-msgstr ""
-
-#: advancedsettingsdialog.ui:86
-msgctxt "advancedsettingsdialog|generated"
-msgid "Generated Values"
-msgstr ""
-
-#: advancedsettingsdialog.ui:100
-msgctxt "advancedsettingsdialog|special"
-msgid "Special Settings"
-msgstr ""
-
-#: applycolpage.ui:162
-msgctxt "applycolpage|label1"
-msgid "Existing Columns"
-msgstr ""
-
-#: authentificationpage.ui:18
-msgctxt "authentificationpage|header"
-msgid "Set up the user authentication"
-msgstr ""
-
-#: authentificationpage.ui:35
-msgctxt "authentificationpage|helptext"
-msgid "Some databases require you to enter a user name."
-msgstr ""
-
-#: authentificationpage.ui:60
-msgctxt "authentificationpage|generalUserNameLabel"
-msgid "_User name"
-msgstr ""
-
-#: authentificationpage.ui:86
-msgctxt "authentificationpage|passRequiredCheckbutton"
-msgid "Password re_quired"
-msgstr ""
-
-#: authentificationpage.ui:111
-msgctxt "authentificationpage|testConnectionButton"
-msgid "_Test Connection"
-msgstr ""
-
-#: autocharsetpage.ui:38
-msgctxt "autocharsetpage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: autocharsetpage.ui:68
-msgctxt "autocharsetpage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: backuppage.ui:18
-msgctxt "backuppage|label1"
-msgid "Backup Your Document"
-msgstr ""
-
-#: backuppage.ui:35
-msgctxt "backuppage|label2"
-msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
-msgstr ""
-
-#: backuppage.ui:51
-msgctxt "backuppage|startmigrate"
-msgid "Press 'Next' to save a copy of your document, and to begin the migration."
-msgstr ""
-
-#: backuppage.ui:76
-msgctxt "backuppage|label3"
-msgid "Save to:"
-msgstr ""
-
-#: backuppage.ui:110
-msgctxt "backuppage|browse"
-msgid "Browse..."
-msgstr ""
-
-#: choosedatasourcedialog.ui:8
-msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
-msgid "Data Source"
-msgstr ""
-
-#: choosedatasourcedialog.ui:67
-msgctxt "choosedatasourcedialog|organize"
-msgid "Or_ganize..."
-msgstr ""
-
-#: choosedatasourcedialog.ui:100
-msgctxt "choosedatasourcedialog|label1"
-msgid "Choose a data source:"
-msgstr ""
-
-#: collectionviewdialog.ui:11
-msgctxt "collectionviewdialog|CollectionView"
-msgid "Save"
-msgstr ""
-
-#: collectionviewdialog.ui:26
-msgctxt "collectionviewdialog|ok"
-msgid "_Save"
-msgstr ""
-
-#: collectionviewdialog.ui:119
-msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
-msgid "Create New Directory"
-msgstr ""
-
-#: collectionviewdialog.ui:135
-msgctxt "collectionviewdialog|upButton|tooltip_text"
-msgid "Up One Level"
-msgstr ""
-
-#: collectionviewdialog.ui:176
-msgctxt "collectionviewdialog|fileNameLabel"
-msgid "File _name:"
-msgstr ""
-
-#: colwidthdialog.ui:15
-msgctxt "colwidthdialog|ColWidthDialog"
-msgid "Column Width"
-msgstr ""
-
-#: colwidthdialog.ui:94
-msgctxt "colwidthdialog|label1"
-msgid "_Width:"
-msgstr ""
-
-#: colwidthdialog.ui:119
-msgctxt "colwidthdialog|automatic"
-msgid "_Automatic"
-msgstr ""
-
-#: connectionpage.ui:41
-msgctxt "connectionpage|browseurllabel"
-msgid "Path to the dBASE files:"
-msgstr ""
-
-#: connectionpage.ui:64
-msgctxt "connectionpage|create"
-msgid "_Create New"
-msgstr ""
-
-#: connectionpage.ui:78
-msgctxt "connectionpage|browse"
-msgid "_Browse…"
-msgstr ""
-
-#: connectionpage.ui:98
-msgctxt "connectionpage|generalLabel"
-msgid "General"
-msgstr ""
-
-#: connectionpage.ui:140
-msgctxt "connectionpage|userNameLabel"
-msgid "_User name:"
-msgstr ""
-
-#: connectionpage.ui:162
-msgctxt "connectionpage|passCheckbutton"
-msgid "Password required"
-msgstr ""
-
-#: connectionpage.ui:186
-msgctxt "connectionpage|userlabel"
-msgid "User Authentication"
-msgstr ""
-
-#: connectionpage.ui:227
-msgctxt "connectionpage|javaDriverLabel"
-msgid "_JDBC driver class:"
-msgstr ""
-
-#: connectionpage.ui:252
-msgctxt "connectionpage|driverButton"
-msgid "Test Class"
-msgstr ""
-
-#: connectionpage.ui:272
-msgctxt "connectionpage|JDBCLabel"
-msgid "JDBC Properties"
-msgstr ""
-
-#: connectionpage.ui:287
-msgctxt "connectionpage|connectionButton"
-msgid "Test Connection"
-msgstr ""
-
-#: copytablepage.ui:35
-msgctxt "copytablepage|defdata"
-msgid "De_finition and data"
-msgstr ""
-
-#: copytablepage.ui:52
-msgctxt "copytablepage|def"
-msgid "Def_inition"
-msgstr ""
-
-#: copytablepage.ui:68
-msgctxt "copytablepage|view"
-msgid "A_s table view"
-msgstr ""
-
-#: copytablepage.ui:84
-msgctxt "copytablepage|data"
-msgid "Append _data"
-msgstr ""
-
-#: copytablepage.ui:100
-msgctxt "copytablepage|firstline"
-msgid "Use first _line as column names"
-msgstr ""
-
-#: copytablepage.ui:115
-msgctxt "copytablepage|primarykey"
-msgid "Crea_te new field as primary key"
-msgstr ""
-
-#: copytablepage.ui:143
-msgctxt "copytablepage|keynamelabel"
-msgid "Name:"
-msgstr ""
-
-#: copytablepage.ui:175
-msgctxt "copytablepage|infoLabel"
-msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
-msgstr ""
-
-#: copytablepage.ui:192
-msgctxt "copytablepage|label1"
-msgid "Options"
-msgstr ""
-
-#: copytablepage.ui:215
-msgctxt "copytablepage|label2"
-msgid "Ta_ble name:"
-msgstr ""
-
-#: dbaseindexdialog.ui:28
-msgctxt "dbaseindexdialog|DBaseIndexDialog"
-msgid "Indexes"
-msgstr ""
-
-#: dbaseindexdialog.ui:107
-msgctxt "dbaseindexdialog|label1"
-msgid "_Table:"
-msgstr ""
-
-#: dbaseindexdialog.ui:162
-msgctxt "dbaseindexdialog|label3"
-msgid "T_able indexes"
-msgstr ""
-
-#: dbaseindexdialog.ui:176
-msgctxt "dbaseindexdialog|label4"
-msgid "_Free indexes"
-msgstr ""
-
-#: dbaseindexdialog.ui:294
-msgctxt "dbaseindexdialog|label2"
-msgid "Assignment"
-msgstr ""
-
-#: dbasepage.ui:38
-msgctxt "dbasepage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: dbasepage.ui:68
-msgctxt "dbasepage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: dbasepage.ui:104
-msgctxt "dbasepage|showDelRowsCheckbutton"
-msgid "Display deleted records as well"
-msgstr ""
-
-#: dbasepage.ui:123
-msgctxt "dbasepage|specMessageLabel"
-msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
-msgstr ""
-
-#: dbasepage.ui:141
-msgctxt "dbasepage|label1"
-msgid "Optional Settings"
-msgstr ""
-
-#: dbasepage.ui:156
-msgctxt "dbasepage|indiciesButton"
-msgid "Indexes..."
-msgstr ""
-
-#: dbwizconnectionpage.ui:36
-msgctxt "dbwizconnectionpage|helptext"
-msgid "label"
-msgstr ""
-
-#: dbwizconnectionpage.ui:57
-msgctxt "dbwizconnectionpage|browseurllabel"
-msgid "Path to the dBASE files:"
-msgstr ""
-
-#: dbwizconnectionpage.ui:80
-msgctxt "dbwizconnectionpage|create"
-msgid "_Create New"
-msgstr ""
-
-#: dbwizconnectionpage.ui:94
-msgctxt "dbwizconnectionpage|browse"
-msgid "_Browse…"
-msgstr ""
-
-#: dbwizmysqlintropage.ui:38
-msgctxt "dbwizmysqlintropage|label2"
-msgid ""
-"You can connect to a MySQL database using either ODBC or JDBC.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#: dbwizmysqlintropage.ui:69
-msgctxt "dbwizmysqlintropage|odbc"
-msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr ""
-
-#: dbwizmysqlintropage.ui:85
-msgctxt "dbwizmysqlintropage|jdbc"
-msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr ""
-
-#: dbwizmysqlintropage.ui:103
-msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr ""
-
-#: dbwizmysqlintropage.ui:125
-msgctxt "dbwizmysqlintropage|label1"
-msgid "How do you want to connect to your MySQL database?"
-msgstr ""
-
-#: dbwizmysqlintropage.ui:143
-msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr ""
-
-#: dbwizmysqlnativepage.ui:41
-msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr ""
-
-#: dbwizmysqlnativepage.ui:76
-msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr ""
-
-#: dbwizspreadsheetpage.ui:74
-msgctxt "dbwizspreadsheetpage|browse"
-msgid "Browse"
-msgstr ""
-
-#: dbwizspreadsheetpage.ui:90
-msgctxt "dbwizspreadsheetpage|create"
-msgid "Create New"
-msgstr ""
-
-#: dbwizspreadsheetpage.ui:148
-msgctxt "dbwizspreadsheetpage|passwordrequired"
-msgid "_Password required"
-msgstr ""
-
-#: dbwiztextpage.ui:74
-msgctxt "dbwiztextpage|browse"
-msgid "Browse"
-msgstr ""
-
-#: dbwiztextpage.ui:90
-msgctxt "dbwiztextpage|create"
-msgid "Create New"
-msgstr ""
-
-#: deleteallrowsdialog.ui:12
-msgctxt "deleteallrowsdialog|DeleteAllRowsDialog"
-msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
-msgstr ""
-
-#: designsavemodifieddialog.ui:12
-msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
-msgid "Do you want to save the changes?"
-msgstr ""
-
-#: designsavemodifieddialog.ui:13
-msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
-msgid "The relation design has been changed."
-msgstr ""
-
-#: directsqldialog.ui:9
-msgctxt "directsqldialog|DirectSQLDialog"
-msgid "Execute SQL Statement"
-msgstr ""
-
-#: directsqldialog.ui:92
-msgctxt "directsqldialog|sql_label"
-msgid "_Command to execute:"
-msgstr ""
-
-#: directsqldialog.ui:108
-msgctxt "directsqldialog|showoutput"
-msgid "_Show output of \"select\" statements"
-msgstr ""
-
-#: directsqldialog.ui:123
-msgctxt "directsqldialog|execute"
-msgid "_Execute"
-msgstr ""
-
-#: directsqldialog.ui:158
-msgctxt "directsqldialog|sqlhistory_label"
-msgid "_Previous commands:"
-msgstr ""
-
-#: directsqldialog.ui:175
-msgctxt "directsqldialog|label1"
-msgid "SQL Command"
-msgstr ""
-
-#: directsqldialog.ui:220
-msgctxt "directsqldialog|label2"
-msgid "Status"
-msgstr ""
-
-#: directsqldialog.ui:265
-msgctxt "directsqldialog|label3"
-msgid "Output"
-msgstr ""
-
-#: fielddialog.ui:8
-msgctxt "fielddialog|FieldDialog"
-msgid "Field Format"
-msgstr ""
-
-#: fielddialog.ui:105
-msgctxt "fielddialog|format"
-msgid "Format"
-msgstr ""
-
-#: fielddialog.ui:119
-msgctxt "fielddialog|alignment"
-msgid "Alignment"
-msgstr ""
-
-#: fielddialog.ui:137
-msgctxt "fielddialog|alttitle"
-msgid "Table Format"
-msgstr ""
-
-#: finalpagewizard.ui:17
-msgctxt "finalpagewizard|headerText"
-msgid "Decide How to Proceed After Saving the Database"
-msgstr ""
-
-#: finalpagewizard.ui:44
-msgctxt "finalpagewizard|helpText"
-msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
-msgstr ""
-
-#: finalpagewizard.ui:56
-msgctxt "finalpagewizard|yesregister"
-msgid "_Yes, register the database for me"
-msgstr ""
-
-#: finalpagewizard.ui:74
-msgctxt "finalpagewizard|noregister"
-msgid "N_o, do not register the database"
-msgstr ""
-
-#: finalpagewizard.ui:105
-msgctxt "finalpagewizard|additionalText"
-msgid "After the database file has been saved, what do you want to do?"
-msgstr ""
-
-#: finalpagewizard.ui:116
-msgctxt "finalpagewizard|openediting"
-msgid "Open the database for editing"
-msgstr ""
-
-#: finalpagewizard.ui:132
-msgctxt "finalpagewizard|usewizard"
-msgid "Create tables using the table wizard"
-msgstr ""
-
-#: finalpagewizard.ui:156
-msgctxt "finalpagewizard|finishText"
-msgid "Click 'Finish' to save the database."
-msgstr ""
-
-#: generalpagedialog.ui:17
-msgctxt "generalpagedialog|datasourceTypePre"
-msgid "Select the type of database to which you want to establish a connection."
-msgstr ""
-
-#: generalpagedialog.ui:31
-msgctxt "generalpagedialog|datasourceTypeLabel"
-msgid "Database _type:"
-msgstr ""
-
-#: generalpagedialog.ui:59
-msgctxt "generalpagedialog|datasourceTypeHelp"
-msgid ""
-"On the following pages, you can make detailed settings for the connection.\n"
-"\n"
-"The new settings you make will overwrite your existing settings."
-msgstr ""
-
-#: generalpagewizard.ui:18
-msgctxt "generalpagewizard|headerText"
-msgid "Welcome to the %PRODUCTNAME Database Wizard"
-msgstr ""
-
-#: generalpagewizard.ui:35
-msgctxt "generalpagewizard|helpText"
-msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
-msgstr ""
-
-#: generalpagewizard.ui:50
-msgctxt "generalpagewizard|sourceTypeHeader"
-msgid "What do you want to do?"
-msgstr ""
-
-#: generalpagewizard.ui:61
-msgctxt "generalpagewizard|createDatabase"
-msgid "Create a n_ew database"
-msgstr ""
-
-#: generalpagewizard.ui:88
-msgctxt "generalpagewizard|embeddeddbLabel"
-msgid "_Embedded database:"
-msgstr ""
-
-#: generalpagewizard.ui:118
-msgctxt "generalpagewizard|openExistingDatabase"
-msgid "Open an existing database _file"
-msgstr ""
-
-#: generalpagewizard.ui:146
-msgctxt "generalpagewizard|docListLabel"
-msgid "_Recently used:"
-msgstr ""
-
-#: generalpagewizard.ui:179
-msgctxt "generalpagewizard|openDatabase"
-msgid "Open"
-msgstr ""
-
-#: generalpagewizard.ui:195
-msgctxt "generalpagewizard|connectDatabase"
-msgid "Connect to an e_xisting database"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:39
-msgctxt "generalspecialjdbcdetailspage|label2"
-msgid "_Host name:"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:53
-msgctxt "generalspecialjdbcdetailspage|label3"
-msgid "_Port number:"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:78
-msgctxt "generalspecialjdbcdetailspage|socketLabel"
-msgid "Socket:"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:90
-msgctxt "generalspecialjdbcdetailspage|driverClassLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:112
-msgctxt "generalspecialjdbcdetailspage|testDriverClassButton"
-msgid "Test Class"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:162
-msgctxt "generalspecialjdbcdetailspage|label1"
-msgid "Connection Settings"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:199
-msgctxt "generalspecialjdbcdetailspage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: generalspecialjdbcdetailspage.ui:229
-msgctxt "generalspecialjdbcdetailspage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: generatedvaluespage.ui:29
-msgctxt "generatedvaluespage|autoretrieve"
-msgid "Re_trieve generated values"
-msgstr ""
-
-#: generatedvaluespage.ui:65
-msgctxt "generatedvaluespage|statementft"
-msgid "_Auto-increment statement:"
-msgstr ""
-
-#: generatedvaluespage.ui:103
-msgctxt "generatedvaluespage|queryft"
-msgid "_Query of generated values:"
-msgstr ""
-
-#: generatedvaluespage.ui:146
-msgctxt "generatedvaluespage|label1"
-msgid "Settings"
-msgstr ""
-
-#: indexdesigndialog.ui:9
-msgctxt "indexdesigndialog|IndexDesignDialog"
-msgid "Indexes"
-msgstr ""
-
-#: indexdesigndialog.ui:80
-msgctxt "indexdesigndialog|ID_INDEX_NEW"
-msgid "New Index"
-msgstr ""
-
-#: indexdesigndialog.ui:95
-msgctxt "indexdesigndialog|ID_INDEX_DROP"
-msgid "Delete Current Index"
-msgstr ""
-
-#: indexdesigndialog.ui:110
-msgctxt "indexdesigndialog|ID_INDEX_RENAME"
-msgid "Rename Current Index"
-msgstr ""
-
-#: indexdesigndialog.ui:125
-msgctxt "indexdesigndialog|ID_INDEX_SAVE"
-msgid "Save Current Index"
-msgstr ""
-
-#: indexdesigndialog.ui:140
-msgctxt "indexdesigndialog|ID_INDEX_RESET"
-msgid "Reset Current Index"
-msgstr ""
-
-#: indexdesigndialog.ui:276
-msgctxt "indexdesigndialog|DESC_LABEL"
-msgid "Index identifier:"
-msgstr ""
-
-#: indexdesigndialog.ui:297
-msgctxt "indexdesigndialog|UNIQUE"
-msgid "_Unique"
-msgstr ""
-
-#: indexdesigndialog.ui:319
-msgctxt "indexdesigndialog|FIELDS_LABEL"
-msgid "Fields:"
-msgstr ""
-
-#: indexdesigndialog.ui:352
-msgctxt "indexdesigndialog|INDEX_DETAILS"
-msgid "Index Details"
-msgstr ""
-
-#: jdbcconnectionpage.ui:20
-msgctxt "jdbcconnectionpage|header"
-msgid "Set Up a Connection to a JDBC Database"
-msgstr ""
-
-#: jdbcconnectionpage.ui:36
-msgctxt "jdbcconnectionpage|helptext"
-msgid "Please enter the required information to connect to a JDBC database. Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#: jdbcconnectionpage.ui:57
-msgctxt "jdbcconnectionpage|browseurllabel"
-msgid "Path to the dBASE files:"
-msgstr ""
-
-#: jdbcconnectionpage.ui:80
-msgctxt "jdbcconnectionpage|create"
-msgid "_Create New"
-msgstr ""
-
-#: jdbcconnectionpage.ui:94
-msgctxt "jdbcconnectionpage|browse"
-msgid "_Browse…"
-msgstr ""
-
-#: jdbcconnectionpage.ui:126
-msgctxt "jdbcconnectionpage|jdbcLabel"
-msgid "JDBC d_river class:"
-msgstr ""
-
-#: jdbcconnectionpage.ui:156
-msgctxt "jdbcconnectionpage|jdbcButton"
-msgid "_Test Class"
-msgstr ""
-
-#: joindialog.ui:15
-msgctxt "joindialog|liststore1"
-msgid "Inner join"
-msgstr ""
-
-#: joindialog.ui:19
-msgctxt "joindialog|liststore1"
-msgid "Left join"
-msgstr ""
-
-#: joindialog.ui:23
-msgctxt "joindialog|liststore1"
-msgid "Right join"
-msgstr ""
-
-#: joindialog.ui:27
-msgctxt "joindialog|liststore1"
-msgid "Full (outer) join"
-msgstr ""
-
-#: joindialog.ui:31
-msgctxt "joindialog|liststore1"
-msgid "Cross join"
-msgstr ""
-
-#: joindialog.ui:39
-msgctxt "joindialog|JoinDialog"
-msgid "Join Properties"
-msgstr ""
-
-#: joindialog.ui:162
-msgctxt "joindialog|label1"
-msgid "Tables Involved"
-msgstr ""
-
-#: joindialog.ui:228
-msgctxt "joindialog|label2"
-msgid "Fields Involved"
-msgstr ""
-
-#: joindialog.ui:264
-msgctxt "joindialog|label5"
-msgid "_Type:"
-msgstr ""
-
-#: joindialog.ui:287
-msgctxt "joindialog|natural"
-msgid "Natural"
-msgstr ""
-
-#: joindialog.ui:311
-msgctxt "joindialog|label6"
-msgid "Options"
-msgstr ""
-
-#: jointablemenu.ui:12
-msgctxt "jointablemenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: joinviewmenu.ui:12
-msgctxt "joinviewmenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: joinviewmenu.ui:20
-msgctxt "joinviewmenu|edit"
-msgid "Edit..."
-msgstr ""
-
-#: keymenu.ui:12
-msgctxt "keymenu|primarykey"
-msgid "Primary Key"
-msgstr ""
-
-#: ldapconnectionpage.ui:18
-msgctxt "ldapconnectionpage|header"
-msgid "Set Up a Connection to an LDAP Directory"
-msgstr ""
-
-#: ldapconnectionpage.ui:34
-msgctxt "ldapconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to an LDAP directory. Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#: ldapconnectionpage.ui:57
-msgctxt "ldapconnectionpage|hostNameLabel"
-msgid "_Server:"
-msgstr ""
-
-#: ldapconnectionpage.ui:71
-msgctxt "ldapconnectionpage|portNumLabel"
-msgid "_Port number:"
-msgstr ""
-
-#: ldapconnectionpage.ui:113
-msgctxt "ldapconnectionpage|portNumDefLabel"
-msgid "Default: 389"
-msgstr ""
-
-#: ldapconnectionpage.ui:132
-msgctxt "ldapconnectionpage|baseDNLabel"
-msgid "Base _DN:"
-msgstr ""
-
-#: ldapconnectionpage.ui:161
-msgctxt "ldapconnectionpage|useSSLCheckbutton"
-msgid "Use _secure connection (SSL)"
-msgstr ""
-
-#: ldappage.ui:39
-msgctxt "ldappage|label1"
-msgid "_Base DN:"
-msgstr ""
-
-#: ldappage.ui:61
-msgctxt "ldappage|useSSLCheckbutton"
-msgid "Use secure connection (SSL)"
-msgstr ""
-
-#: ldappage.ui:80
-msgctxt "ldappage|label2"
-msgid "_Port number:"
-msgstr ""
-
-#: ldappage.ui:105
-msgctxt "ldappage|label3"
-msgid "Maximum number of _records:"
-msgstr ""
-
-#: ldappage.ui:133
-msgctxt "ldappage|charsetheader"
-msgid "Connection Settings"
-msgstr ""
-
-#: migratepage.ui:17
-msgctxt "migratepage|label1"
-msgid "Migration Progress"
-msgstr ""
-
-#: migratepage.ui:34
-msgctxt "migratepage|count"
-msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
-msgstr ""
-
-#: migratepage.ui:50
-msgctxt "migratepage|done"
-msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
-msgstr ""
-
-#: migratepage.ui:71
-msgctxt "migratepage|label4"
-msgid "Overall progress:"
-msgstr ""
-
-#: migratepage.ui:83
-msgctxt "migratepage|overall"
-msgid "document $current$ of $overall$"
-msgstr ""
-
-#: migratepage.ui:123
-msgctxt "migratepage|label6"
-msgid "Current progress:"
-msgstr ""
-
-#: migratepage.ui:174
-msgctxt "migratepage|label5"
-msgid "Current object:"
-msgstr ""
-
-#: mysqlnativepage.ui:48
-msgctxt "mysqlnativepage|connectionheader"
-msgid "Connection Settings"
-msgstr ""
-
-#: mysqlnativepage.ui:90
-msgctxt "mysqlnativepage|usernamelabel"
-msgid "_User name:"
-msgstr ""
-
-#: mysqlnativepage.ui:113
-msgctxt "mysqlnativepage|passwordrequired"
-msgid "Password required"
-msgstr ""
-
-#: mysqlnativepage.ui:137
-msgctxt "mysqlnativepage|userheader"
-msgid "User Authentication"
-msgstr ""
-
-#: mysqlnativepage.ui:176
-msgctxt "mysqlnativepage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: mysqlnativepage.ui:206
-msgctxt "mysqlnativepage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: mysqlnativesettings.ui:25
-msgctxt "mysqlnativesettings|dbnamelabel"
-msgid "_Database name:"
-msgstr ""
-
-#: mysqlnativesettings.ui:63
-msgctxt "mysqlnativesettings|hostport"
-msgid "Se_rver/port"
-msgstr ""
-
-#: mysqlnativesettings.ui:96
-msgctxt "mysqlnativesettings|serverlabel"
-msgid "_Server:"
-msgstr ""
-
-#: mysqlnativesettings.ui:110
-msgctxt "mysqlnativesettings|portlabel"
-msgid "_Port:"
-msgstr ""
-
-#: mysqlnativesettings.ui:138
-msgctxt "mysqlnativesettings|defaultport"
-msgid "Default: 3306"
-msgstr ""
-
-#: mysqlnativesettings.ui:182
-msgctxt "mysqlnativesettings|socketlabel"
-msgid "So_cket:"
-msgstr ""
-
-#: mysqlnativesettings.ui:225
-msgctxt "mysqlnativesettings|namedpipelabel"
-msgid "Named p_ipe:"
-msgstr ""
-
-#: namematchingpage.ui:48
-msgctxt "namematchingpage|all"
-msgid "_All"
-msgstr ""
-
-#: namematchingpage.ui:65
-msgctxt "namematchingpage|none"
-msgid "Non_e"
-msgstr ""
-
-#: namematchingpage.ui:101
-msgctxt "namematchingpage|leftlabel"
-msgid "Source table: "
-msgstr ""
-
-#: namematchingpage.ui:146
-msgctxt "namematchingpage|rightlabel"
-msgid "Destination table: "
-msgstr ""
-
-#: odbcpage.ui:38
-msgctxt "odbcpage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: odbcpage.ui:68
-msgctxt "odbcpage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: odbcpage.ui:112
-msgctxt "odbcpage|optionslabel"
-msgid "ODBC _options:"
-msgstr ""
-
-#: odbcpage.ui:143
-msgctxt "odbcpage|useCatalogCheckbutton"
-msgid "Use catalog for file-based databases"
-msgstr ""
-
-#: odbcpage.ui:165
-msgctxt "odbcpage|label1"
-msgid "Optional Settings"
-msgstr ""
-
-#: parametersdialog.ui:10
-msgctxt "parametersdialog|Parameters"
-msgid "Parameter Input"
-msgstr ""
-
-#: parametersdialog.ui:122
-msgctxt "parametersdialog|label2"
-msgid "_Value:"
-msgstr ""
-
-#: parametersdialog.ui:153
-msgctxt "parametersdialog|next"
-msgid "_Next"
-msgstr ""
-
-#: parametersdialog.ui:181
-msgctxt "parametersdialog|label1"
-msgid "_Parameters"
-msgstr ""
-
-#: password.ui:8
-msgctxt "password|PasswordDialog"
-msgid "Change Password"
-msgstr ""
-
-#: password.ui:120
-msgctxt "password|label2"
-msgid "Old p_assword:"
-msgstr ""
-
-#: password.ui:134
-msgctxt "password|label3"
-msgid "_Password:"
-msgstr ""
-
-#: password.ui:148
-msgctxt "password|label4"
-msgid "_Confirm password:"
-msgstr ""
-
-#: password.ui:177
-msgctxt "password|label1"
-msgid "User “$name$: $”"
-msgstr ""
-
-#: preparepage.ui:17
-msgctxt "preparepage|label1"
-msgid "Welcome to the Database Macro Migration Wizard"
-msgstr ""
-
-#: preparepage.ui:34
-msgctxt "preparepage|label2"
-msgid ""
-"This wizard will guide you through the task of migrating your macros.\n"
-"\n"
-"After you finished it, all macros which were formerly embedded into the forms and reports of the current database document will have been moved to the document itself. In this course, libraries will be renamed as needed.\n"
-"\n"
-"If your forms and reports contain references to those macros, they will be adjusted, where possible.\n"
-"\n"
-"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
-msgstr ""
-
-#: preparepage.ui:56
-msgctxt "preparepage|closedocerror"
-msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
-msgstr ""
-
-#: querycolmenu.ui:12
-msgctxt "querycolmenu|width"
-msgid "Column _Width..."
-msgstr ""
-
-#: querycolmenu.ui:26
-msgctxt "querycolmenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: queryfilterdialog.ui:8
-msgctxt "queryfilterdialog|QueryFilterDialog"
-msgid "Standard Filter"
-msgstr ""
-
-#: queryfilterdialog.ui:96
-msgctxt "queryfilterdialog|label2"
-msgid "Operator"
-msgstr ""
-
-#: queryfilterdialog.ui:108
-msgctxt "queryfilterdialog|label5"
-msgid "Field name"
-msgstr ""
-
-#: queryfilterdialog.ui:120
-msgctxt "queryfilterdialog|label6"
-msgid "Condition"
-msgstr ""
-
-#: queryfilterdialog.ui:134
-msgctxt "queryfilterdialog|field1"
-msgid "- none -"
-msgstr ""
-
-#: queryfilterdialog.ui:148
-msgctxt "queryfilterdialog|cond1"
-msgid "="
-msgstr ""
-
-#: queryfilterdialog.ui:149
-msgctxt "queryfilterdialog|cond1"
-msgid "<>"
-msgstr ""
-
-#: queryfilterdialog.ui:150
-msgctxt "queryfilterdialog|cond1"
-msgid "<"
-msgstr ""
-
-#: queryfilterdialog.ui:151
-msgctxt "queryfilterdialog|cond1"
-msgid "<="
-msgstr ""
-
-#: queryfilterdialog.ui:152
-msgctxt "queryfilterdialog|cond1"
-msgid ">"
-msgstr ""
-
-#: queryfilterdialog.ui:153
-msgctxt "queryfilterdialog|cond1"
-msgid ">="
-msgstr ""
-
-#: queryfilterdialog.ui:154
-msgctxt "queryfilterdialog|cond1"
-msgid "like"
-msgstr ""
-
-#: queryfilterdialog.ui:155
-msgctxt "queryfilterdialog|cond1"
-msgid "not like"
-msgstr ""
-
-#: queryfilterdialog.ui:156
-msgctxt "queryfilterdialog|cond1"
-msgid "null"
-msgstr ""
-
-#: queryfilterdialog.ui:157
-msgctxt "queryfilterdialog|cond1"
-msgid "not null"
-msgstr ""
-
-#: queryfilterdialog.ui:171
-msgctxt "queryfilterdialog|field2"
-msgid "- none -"
-msgstr ""
-
-#: queryfilterdialog.ui:185
-msgctxt "queryfilterdialog|field3"
-msgid "- none -"
-msgstr ""
-
-#: queryfilterdialog.ui:219
-msgctxt "queryfilterdialog|label7"
-msgid "Value"
-msgstr ""
-
-#: queryfilterdialog.ui:263
-msgctxt "queryfilterdialog|op2"
-msgid "AND"
-msgstr ""
-
-#: queryfilterdialog.ui:264
-msgctxt "queryfilterdialog|op2"
-msgid "OR"
-msgstr ""
-
-#: queryfilterdialog.ui:278
-msgctxt "queryfilterdialog|op3"
-msgid "AND"
-msgstr ""
-
-#: queryfilterdialog.ui:279
-msgctxt "queryfilterdialog|op3"
-msgid "OR"
-msgstr ""
-
-#: queryfilterdialog.ui:298
-msgctxt "queryfilterdialog|label1"
-msgid "Criteria"
-msgstr ""
-
-#: queryfuncmenu.ui:12
-msgctxt "queryfuncmenu|functions"
-msgid "Functions"
-msgstr ""
-
-#: queryfuncmenu.ui:26
-msgctxt "queryfuncmenu|tablename"
-msgid "Table Name"
-msgstr ""
-
-#: queryfuncmenu.ui:34
-msgctxt "queryfuncmenu|alias"
-msgid "Alias"
-msgstr ""
-
-#: queryfuncmenu.ui:48
-msgctxt "queryfuncmenu|distinct"
-msgid "Distinct Values"
-msgstr ""
-
-#: querypropertiesdialog.ui:9
-msgctxt "querypropertiesdialog|QueryPropertiesDialog"
-msgid "Query Properties"
-msgstr ""
-
-#: querypropertiesdialog.ui:101
-msgctxt "querypropertiesdialog|limit-label"
-msgid "Limit:"
-msgstr ""
-
-#: querypropertiesdialog.ui:117
-msgctxt "querypropertiesdialog|distinct"
-msgid "Yes"
-msgstr ""
-
-#: querypropertiesdialog.ui:133
-msgctxt "querypropertiesdialog|nondistinct"
-msgid "No"
-msgstr ""
-
-#: querypropertiesdialog.ui:160
-msgctxt "querypropertiesdialog|distinctvalues"
-msgid "Distinct values:"
-msgstr ""
-
-#: relationdialog.ui:9
-msgctxt "relationdialog|RelationDialog"
-msgid "Relations"
-msgstr ""
-
-#: relationdialog.ui:132
-msgctxt "relationdialog|label1"
-msgid "Tables Involved"
-msgstr ""
-
-#: relationdialog.ui:173
-msgctxt "relationdialog|label2"
-msgid "Fields Involved"
-msgstr ""
-
-#: relationdialog.ui:211
-msgctxt "relationdialog|addaction"
-msgid "_No action"
-msgstr ""
-
-#: relationdialog.ui:228
-msgctxt "relationdialog|addcascade"
-msgid "_Update cascade"
-msgstr ""
-
-#: relationdialog.ui:244
-msgctxt "relationdialog|addnull"
-msgid "_Set null"
-msgstr ""
-
-#: relationdialog.ui:260
-msgctxt "relationdialog|adddefault"
-msgid "Set _default"
-msgstr ""
-
-#: relationdialog.ui:282
-msgctxt "relationdialog|label3"
-msgid "Update Options"
-msgstr ""
-
-#: relationdialog.ui:315
-msgctxt "relationdialog|delaction"
-msgid "_No action"
-msgstr ""
-
-#: relationdialog.ui:331
-msgctxt "relationdialog|delcascade"
-msgid "Delete _cascade"
-msgstr ""
-
-#: relationdialog.ui:346
-msgctxt "relationdialog|delnull"
-msgid "_Set null"
-msgstr ""
-
-#: relationdialog.ui:361
-msgctxt "relationdialog|deldefault"
-msgid "Set _default"
-msgstr ""
-
-#: relationdialog.ui:382
-msgctxt "relationdialog|label4"
-msgid "Delete Options"
-msgstr ""
-
-#: relationdialog.ui:435
-msgctxt "relationdialog|liststore1"
-msgid "Inner join"
-msgstr ""
-
-#: relationdialog.ui:439
-msgctxt "relationdialog|liststore1"
-msgid "Left join"
-msgstr ""
-
-#: relationdialog.ui:443
-msgctxt "relationdialog|liststore1"
-msgid "Right join"
-msgstr ""
-
-#: relationdialog.ui:447
-msgctxt "relationdialog|liststore1"
-msgid "Full (outer) join"
-msgstr ""
-
-#: relationdialog.ui:451
-msgctxt "relationdialog|liststore1"
-msgid "Cross join"
-msgstr ""
-
-#: rowheightdialog.ui:15
-msgctxt "rowheightdialog|RowHeightDialog"
-msgid "Row Height"
-msgstr ""
-
-#: rowheightdialog.ui:94
-msgctxt "rowheightdialog|label1"
-msgid "_Height:"
-msgstr ""
-
-#: rowheightdialog.ui:119
-msgctxt "rowheightdialog|automatic"
-msgid "_Automatic"
-msgstr ""
-
-#: rtfcopytabledialog.ui:9
-msgctxt "rtfcopytabledialog|RTFCopyTable"
-msgid "Copy RTF Table"
-msgstr ""
-
-#: savedialog.ui:9
-msgctxt "savedialog|SaveDialog"
-msgid "Save As"
-msgstr ""
-
-#: savedialog.ui:85
-msgctxt "savedialog|descriptionft"
-msgid "Please enter a name for the object to be created:"
-msgstr ""
-
-#: savedialog.ui:100
-msgctxt "savedialog|catalogft"
-msgid "_Catalog:"
-msgstr ""
-
-#: savedialog.ui:114
-msgctxt "savedialog|schemaft"
-msgid "_Schema:"
-msgstr ""
-
-#: saveindexdialog.ui:8
-msgctxt "saveindexdialog|SaveIndexDialog"
-msgid "Exit Index Design"
-msgstr ""
-
-#: saveindexdialog.ui:13
-msgctxt "saveindexdialog|SaveIndexDialog"
-msgid "Do you want to save the changes made to the current index?"
-msgstr ""
-
-#: savemodifieddialog.ui:12
-msgctxt "savemodifieddialog|SaveModifiedDialog"
-msgid "Do you want to save the changes?"
-msgstr ""
-
-#: savemodifieddialog.ui:13
-msgctxt "savemodifieddialog|SaveModifiedDialog"
-msgid "The current record has been changed."
-msgstr ""
-
-#: sortdialog.ui:8
-msgctxt "sortdialog|SortDialog"
-msgid "Sort Order"
-msgstr ""
-
-#: sortdialog.ui:96
-msgctxt "sortdialog|label2"
-msgid "Operator"
-msgstr ""
-
-#: sortdialog.ui:109
-msgctxt "sortdialog|label3"
-msgid "and then"
-msgstr ""
-
-#: sortdialog.ui:122
-msgctxt "sortdialog|label4"
-msgid "and then"
-msgstr ""
-
-#: sortdialog.ui:134
-msgctxt "sortdialog|label5"
-msgid "Field name"
-msgstr ""
-
-#: sortdialog.ui:146
-msgctxt "sortdialog|label6"
-msgid "Order"
-msgstr ""
-
-#: sortdialog.ui:171
-msgctxt "sortdialog|value1"
-msgid "ascending"
-msgstr ""
-
-#: sortdialog.ui:172
-msgctxt "sortdialog|value1"
-msgid "descending"
-msgstr ""
-
-#: sortdialog.ui:208
-msgctxt "sortdialog|value2"
-msgid "ascending"
-msgstr ""
-
-#: sortdialog.ui:209
-msgctxt "sortdialog|value2"
-msgid "descending"
-msgstr ""
-
-#: sortdialog.ui:223
-msgctxt "sortdialog|value3"
-msgid "ascending"
-msgstr ""
-
-#: sortdialog.ui:224
-msgctxt "sortdialog|value3"
-msgid "descending"
-msgstr ""
-
-#: sortdialog.ui:243
-msgctxt "sortdialog|label1"
-msgid "Sort Order"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:19
-msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:35
-msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:58
-msgctxt "specialjdbcconnectionpage|dbNameLabel"
-msgid "_Database name:"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:72
-msgctxt "specialjdbcconnectionpage|hostNameLabel"
-msgid "_Server:"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:86
-msgctxt "specialjdbcconnectionpage|portNumLabel"
-msgid "_Port number:"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:139
-msgctxt "specialjdbcconnectionpage|portNumDefLabel"
-msgid "Default: 3306"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:173
-msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr ""
-
-#: specialjdbcconnectionpage.ui:195
-msgctxt "specialjdbcconnectionpage|testDriverButton"
-msgid "_Test Class"
-msgstr ""
-
-#: specialsettingspage.ui:18
-msgctxt "specialsettingspage|usesql92"
-msgid "Use SQL92 naming constraints"
-msgstr ""
-
-#: specialsettingspage.ui:35
-msgctxt "specialsettingspage|append"
-msgid "Append the table alias name on SELECT statements"
-msgstr ""
-
-#: specialsettingspage.ui:52
-msgctxt "specialsettingspage|useas"
-msgid "Use keyword AS before table alias names"
-msgstr ""
-
-#: specialsettingspage.ui:69
-msgctxt "specialsettingspage|useoj"
-msgid "Use Outer Join syntax '{oj }'"
-msgstr ""
-
-#: specialsettingspage.ui:86
-msgctxt "specialsettingspage|ignoreprivs"
-msgid "Ignore the privileges from the database driver"
-msgstr ""
-
-#: specialsettingspage.ui:103
-msgctxt "specialsettingspage|replaceparams"
-msgid "Replace named parameters with '?'"
-msgstr ""
-
-#: specialsettingspage.ui:120
-msgctxt "specialsettingspage|displayver"
-msgid "Display version columns (when available)"
-msgstr ""
-
-#: specialsettingspage.ui:137
-msgctxt "specialsettingspage|usecatalogname"
-msgid "Use catalog name in SELECT statements"
-msgstr ""
-
-#: specialsettingspage.ui:154
-msgctxt "specialsettingspage|useschemaname"
-msgid "Use schema name in SELECT statements"
-msgstr ""
-
-#: specialsettingspage.ui:171
-msgctxt "specialsettingspage|createindex"
-msgid "Create index with ASC or DESC statement"
-msgstr ""
-
-#: specialsettingspage.ui:188
-msgctxt "specialsettingspage|eol"
-msgid "End text lines with CR+LF"
-msgstr ""
-
-#: specialsettingspage.ui:205
-msgctxt "specialsettingspage|ignorecurrency"
-msgid "Ignore currency field information"
-msgstr ""
-
-#: specialsettingspage.ui:222
-msgctxt "specialsettingspage|inputchecks"
-msgid "Form data input checks for required fields"
-msgstr ""
-
-#: specialsettingspage.ui:239
-msgctxt "specialsettingspage|useodbcliterals"
-msgid "Use ODBC conformant date/time literals"
-msgstr ""
-
-#: specialsettingspage.ui:256
-msgctxt "specialsettingspage|primarykeys"
-msgid "Supports primary keys"
-msgstr ""
-
-#: specialsettingspage.ui:273
-msgctxt "specialsettingspage|resulttype"
-msgid "Respect the result set type from the database driver"
-msgstr ""
-
-#: specialsettingspage.ui:299
-msgctxt "specialsettingspage|comparisonft"
-msgid "Comparison of Boolean values:"
-msgstr ""
-
-#: specialsettingspage.ui:315
-msgctxt "specialsettingspage|comparison"
-msgid "Default"
-msgstr ""
-
-#: specialsettingspage.ui:316
-msgctxt "specialsettingspage|comparison"
-msgid "SQL"
-msgstr ""
-
-#: specialsettingspage.ui:317
-msgctxt "specialsettingspage|comparison"
-msgid "Mixed"
-msgstr ""
-
-#: specialsettingspage.ui:318
-msgctxt "specialsettingspage|comparison"
-msgid "MS Access"
-msgstr ""
-
-#: specialsettingspage.ui:333
-msgctxt "specialsettingspage|rowsft"
-msgid "Rows to scan column types:"
-msgstr ""
-
-#: sqlexception.ui:9
-msgctxt "sqlexception|SQLExceptionDialog"
-msgid "Error Details"
-msgstr ""
-
-#: sqlexception.ui:58
-msgctxt "sqlexception|label2"
-msgid "Error _list:"
-msgstr ""
-
-#: sqlexception.ui:72
-msgctxt "sqlexception|label3"
-msgid "_Description:"
-msgstr ""
-
-#: summarypage.ui:17
-msgctxt "summarypage|label1"
-msgid "Summary"
-msgstr ""
-
-#: summarypage.ui:34
-msgctxt "summarypage|success"
-msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
-msgstr ""
-
-#: summarypage.ui:50
-msgctxt "summarypage|failure"
-msgid "The migration was not successful. Examine the migration log below for details."
-msgstr ""
-
-#: tabledesignrowmenu.ui:12
-msgctxt "tabledesignrowmenu|cut"
-msgid "Cu_t"
-msgstr ""
-
-#: tabledesignrowmenu.ui:20
-msgctxt "tabledesignrowmenu|copy"
-msgid "_Copy"
-msgstr ""
-
-#: tabledesignrowmenu.ui:28
-msgctxt "tabledesignrowmenu|paste"
-msgid "_Paste"
-msgstr ""
-
-#: tabledesignrowmenu.ui:35
-msgctxt "tabledesignrowmenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: tabledesignrowmenu.ui:42
-msgctxt "tabledesignrowmenu|insert"
-msgid "Insert Rows"
-msgstr ""
-
-#: tabledesignrowmenu.ui:55
-msgctxt "tabledesignrowmenu|primarykey"
-msgid "Primary Key"
-msgstr ""
-
-#: tabledesignsavemodifieddialog.ui:12
-msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
-msgid "Do you want to save the changes?"
-msgstr ""
-
-#: tabledesignsavemodifieddialog.ui:13
-msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
-msgid "The table has been changed."
-msgstr ""
-
-#: tablesfilterdialog.ui:8
-msgctxt "tablesfilterdialog|TablesFilterDialog"
-msgid "Tables Filter"
-msgstr ""
-
-#: tablesfilterpage.ui:34
-msgctxt "tablesfilterpage|label2"
-msgid "Mark the tables that should be visible for the applications."
-msgstr ""
-
-#: tablesfilterpage.ui:70
-msgctxt "tablesfilterpage|label1"
-msgid "Tables and Table Filter"
-msgstr ""
-
-#: tablesjoindialog.ui:82
-msgctxt "tablesjoindialog|tables"
-msgid "Tables"
-msgstr ""
-
-#: tablesjoindialog.ui:99
-msgctxt "tablesjoindialog|queries"
-msgid "Queries"
-msgstr ""
-
-#: tablesjoindialog.ui:132
-msgctxt "tablesjoindialog|title"
-msgid "Add Tables"
-msgstr ""
-
-#: tablesjoindialog.ui:143
-msgctxt "tablesjoindialog|alttitle"
-msgid "Add Table or Query"
-msgstr ""
-
-#: textconnectionsettings.ui:8
-msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
-msgid "Text Connection Settings"
-msgstr ""
-
-#: textpage.ui:39
-msgctxt "textpage|textfile"
-msgid "Plain text files (*.txt)"
-msgstr ""
-
-#: textpage.ui:56
-msgctxt "textpage|csvfile"
-msgid "Comma-separated value files (*.csv)"
-msgstr ""
-
-#: textpage.ui:73
-msgctxt "textpage|custom"
-msgid "Custom:"
-msgstr ""
-
-#: textpage.ui:106
-msgctxt "textpage|example"
-msgid "Custom: *.abc"
-msgstr ""
-
-#: textpage.ui:121
-msgctxt "textpage|extensionheader"
-msgid "Specify the Type of Files You Want to Access"
-msgstr ""
-
-#: textpage.ui:159
-msgctxt "textpage|containsheaders"
-msgid "_Text contains headers"
-msgstr ""
-
-#: textpage.ui:181
-msgctxt "textpage|fieldlabel"
-msgid "Field separator:"
-msgstr ""
-
-#: textpage.ui:195
-msgctxt "textpage|textlabel"
-msgid "Text separator:"
-msgstr ""
-
-#: textpage.ui:209
-msgctxt "textpage|decimallabel"
-msgid "Decimal separator:"
-msgstr ""
-
-#: textpage.ui:223
-msgctxt "textpage|thousandslabel"
-msgid "Thousands separator:"
-msgstr ""
-
-#: textpage.ui:273
-msgctxt "textpage|decimalseparator"
-msgid "."
-msgstr ""
-
-#: textpage.ui:274
-msgctxt "textpage|decimalseparator"
-msgid ","
-msgstr ""
-
-#: textpage.ui:275
-msgctxt "textpage|decimalseparator"
-msgid ";"
-msgstr ""
-
-#: textpage.ui:276
-msgctxt "textpage|decimalseparator"
-msgid ":"
-msgstr ""
-
-#: textpage.ui:296
-msgctxt "textpage|thousandsseparator"
-msgid "."
-msgstr ""
-
-#: textpage.ui:297
-msgctxt "textpage|thousandsseparator"
-msgid ","
-msgstr ""
-
-#: textpage.ui:318
-msgctxt "textpage|formatlabel"
-msgid "Row Format"
-msgstr ""
-
-#: textpage.ui:359
-msgctxt "textpage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: textpage.ui:389
-msgctxt "textpage|charsetheader"
-msgid "Data Conversion"
-msgstr ""
-
-#: typeselectpage.ui:71
-msgctxt "typeselectpage|columns"
-msgid "Column Information"
-msgstr ""
-
-#: typeselectpage.ui:110
-msgctxt "typeselectpage|autolabel"
-msgid "Lines (ma_x.):"
-msgstr ""
-
-#: typeselectpage.ui:121
-msgctxt "typeselectpage|autobutton"
-msgid "_Auto"
-msgstr ""
-
-#: typeselectpage.ui:153
-msgctxt "typeselectpage|autotype"
-msgid "Automatic Type Recognition"
-msgstr ""
-
-#: useradmindialog.ui:8
-msgctxt "useradmindialog|UserAdminDialog"
-msgid "User Administration"
-msgstr ""
-
-#: useradmindialog.ui:87
-msgctxt "useradmindialog|settings"
-msgid "User Settings"
-msgstr ""
-
-#: useradminpage.ui:47
-msgctxt "useradminpage|label3"
-msgid "Us_er:"
-msgstr ""
-
-#: useradminpage.ui:83
-msgctxt "useradminpage|add"
-msgid "_Add User..."
-msgstr ""
-
-#: useradminpage.ui:98
-msgctxt "useradminpage|changepass"
-msgid "Change _Password..."
-msgstr ""
-
-#: useradminpage.ui:113
-msgctxt "useradminpage|delete"
-msgid "_Delete User..."
-msgstr ""
-
-#: useradminpage.ui:141
-msgctxt "useradminpage|label1"
-msgid "User Selection"
-msgstr ""
-
-#: useradminpage.ui:180
-msgctxt "useradminpage|label2"
-msgid "Access Rights for Selected User"
-msgstr ""
-
-#: userdetailspage.ui:40
-msgctxt "userdetailspage|hostnameft"
-msgid "_Host name:"
-msgstr ""
-
-#: userdetailspage.ui:56
-msgctxt "userdetailspage|portnumberft"
-msgid "_Port number:"
-msgstr ""
-
-#: userdetailspage.ui:89
-msgctxt "userdetailspage|usecatalog"
-msgid "_Use catalog"
-msgstr ""
-
-#: userdetailspage.ui:109
-msgctxt "userdetailspage|optionslabel"
-msgid "_Driver settings:"
-msgstr ""
-
-#: userdetailspage.ui:137
-msgctxt "userdetailspage|label1"
-msgid "Connection Settings"
-msgstr ""
-
-#: userdetailspage.ui:175
-msgctxt "userdetailspage|charsetlabel"
-msgid "_Character set:"
-msgstr ""
-
-#: userdetailspage.ui:205
-msgctxt "userdetailspage|charsetheader"
-msgid "Data conversion"
-msgstr ""
-
#: query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
msgid "The table view"
@@ -4229,3 +2332,1900 @@ msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
"Please check your documentation of the database."
msgstr ""
+
+#: admindialog.ui:8
+msgctxt "admindialog|AdminDialog"
+msgid "Database Properties"
+msgstr ""
+
+#: admindialog.ui:92
+msgctxt "admindialog|advanced"
+msgid "Advanced Properties"
+msgstr ""
+
+#: advancedsettingsdialog.ui:8
+msgctxt "advancedsettingsdialog|AdvancedSettingsDialog"
+msgid "Advanced Settings"
+msgstr ""
+
+#: advancedsettingsdialog.ui:92
+msgctxt "advancedsettingsdialog|generated"
+msgid "Generated Values"
+msgstr ""
+
+#: advancedsettingsdialog.ui:114
+msgctxt "advancedsettingsdialog|special"
+msgid "Special Settings"
+msgstr ""
+
+#: applycolpage.ui:162
+msgctxt "applycolpage|label1"
+msgid "Existing Columns"
+msgstr ""
+
+#: authentificationpage.ui:18
+msgctxt "authentificationpage|header"
+msgid "Set up the user authentication"
+msgstr ""
+
+#: authentificationpage.ui:35
+msgctxt "authentificationpage|helptext"
+msgid "Some databases require you to enter a user name."
+msgstr ""
+
+#: authentificationpage.ui:60
+msgctxt "authentificationpage|generalUserNameLabel"
+msgid "_User name"
+msgstr ""
+
+#: authentificationpage.ui:86
+msgctxt "authentificationpage|passRequiredCheckbutton"
+msgid "Password re_quired"
+msgstr ""
+
+#: authentificationpage.ui:111
+msgctxt "authentificationpage|testConnectionButton"
+msgid "_Test Connection"
+msgstr ""
+
+#: autocharsetpage.ui:38
+msgctxt "autocharsetpage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: autocharsetpage.ui:68
+msgctxt "autocharsetpage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: backuppage.ui:18
+msgctxt "backuppage|label1"
+msgid "Backup Your Document"
+msgstr ""
+
+#: backuppage.ui:35
+msgctxt "backuppage|label2"
+msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
+msgstr ""
+
+#: backuppage.ui:51
+msgctxt "backuppage|startmigrate"
+msgid "Press 'Next' to save a copy of your document, and to begin the migration."
+msgstr ""
+
+#: backuppage.ui:76
+msgctxt "backuppage|label3"
+msgid "Save to:"
+msgstr ""
+
+#: backuppage.ui:110
+msgctxt "backuppage|browse"
+msgid "Browse..."
+msgstr ""
+
+#: choosedatasourcedialog.ui:8
+msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
+msgid "Data Source"
+msgstr ""
+
+#: choosedatasourcedialog.ui:67
+msgctxt "choosedatasourcedialog|organize"
+msgid "Or_ganize..."
+msgstr ""
+
+#: choosedatasourcedialog.ui:100
+msgctxt "choosedatasourcedialog|label1"
+msgid "Choose a data source:"
+msgstr ""
+
+#: collectionviewdialog.ui:11
+msgctxt "collectionviewdialog|CollectionView"
+msgid "Save"
+msgstr ""
+
+#: collectionviewdialog.ui:26
+msgctxt "collectionviewdialog|ok"
+msgid "_Save"
+msgstr ""
+
+#: collectionviewdialog.ui:119
+msgctxt "collectionviewdialog|newFolderButton|tooltip_text"
+msgid "Create New Directory"
+msgstr ""
+
+#: collectionviewdialog.ui:135
+msgctxt "collectionviewdialog|upButton|tooltip_text"
+msgid "Up One Level"
+msgstr ""
+
+#: collectionviewdialog.ui:176
+msgctxt "collectionviewdialog|fileNameLabel"
+msgid "File _name:"
+msgstr ""
+
+#: colwidthdialog.ui:15
+msgctxt "colwidthdialog|ColWidthDialog"
+msgid "Column Width"
+msgstr ""
+
+#: colwidthdialog.ui:94
+msgctxt "colwidthdialog|label1"
+msgid "_Width:"
+msgstr ""
+
+#: colwidthdialog.ui:119
+msgctxt "colwidthdialog|automatic"
+msgid "_Automatic"
+msgstr ""
+
+#: connectionpage.ui:41
+msgctxt "connectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr ""
+
+#: connectionpage.ui:64
+msgctxt "connectionpage|create"
+msgid "_Create New"
+msgstr ""
+
+#: connectionpage.ui:78
+msgctxt "connectionpage|browse"
+msgid "_Browse…"
+msgstr ""
+
+#: connectionpage.ui:98
+msgctxt "connectionpage|generalLabel"
+msgid "General"
+msgstr ""
+
+#: connectionpage.ui:140
+msgctxt "connectionpage|userNameLabel"
+msgid "_User name:"
+msgstr ""
+
+#: connectionpage.ui:162
+msgctxt "connectionpage|passCheckbutton"
+msgid "Password required"
+msgstr ""
+
+#: connectionpage.ui:186
+msgctxt "connectionpage|userlabel"
+msgid "User Authentication"
+msgstr ""
+
+#: connectionpage.ui:227
+msgctxt "connectionpage|javaDriverLabel"
+msgid "_JDBC driver class:"
+msgstr ""
+
+#: connectionpage.ui:252
+msgctxt "connectionpage|driverButton"
+msgid "Test Class"
+msgstr ""
+
+#: connectionpage.ui:272
+msgctxt "connectionpage|JDBCLabel"
+msgid "JDBC Properties"
+msgstr ""
+
+#: connectionpage.ui:287
+msgctxt "connectionpage|connectionButton"
+msgid "Test Connection"
+msgstr ""
+
+#: copytablepage.ui:35
+msgctxt "copytablepage|defdata"
+msgid "De_finition and data"
+msgstr ""
+
+#: copytablepage.ui:52
+msgctxt "copytablepage|def"
+msgid "Def_inition"
+msgstr ""
+
+#: copytablepage.ui:68
+msgctxt "copytablepage|view"
+msgid "A_s table view"
+msgstr ""
+
+#: copytablepage.ui:84
+msgctxt "copytablepage|data"
+msgid "Append _data"
+msgstr ""
+
+#: copytablepage.ui:100
+msgctxt "copytablepage|firstline"
+msgid "Use first _line as column names"
+msgstr ""
+
+#: copytablepage.ui:115
+msgctxt "copytablepage|primarykey"
+msgid "Crea_te new field as primary key"
+msgstr ""
+
+#: copytablepage.ui:143
+msgctxt "copytablepage|keynamelabel"
+msgid "Name:"
+msgstr ""
+
+#: copytablepage.ui:175
+msgctxt "copytablepage|infoLabel"
+msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
+msgstr ""
+
+#: copytablepage.ui:192
+msgctxt "copytablepage|label1"
+msgid "Options"
+msgstr ""
+
+#: copytablepage.ui:215
+msgctxt "copytablepage|label2"
+msgid "Ta_ble name:"
+msgstr ""
+
+#: dbaseindexdialog.ui:28
+msgctxt "dbaseindexdialog|DBaseIndexDialog"
+msgid "Indexes"
+msgstr ""
+
+#: dbaseindexdialog.ui:107
+msgctxt "dbaseindexdialog|label1"
+msgid "_Table:"
+msgstr ""
+
+#: dbaseindexdialog.ui:162
+msgctxt "dbaseindexdialog|label3"
+msgid "T_able indexes"
+msgstr ""
+
+#: dbaseindexdialog.ui:176
+msgctxt "dbaseindexdialog|label4"
+msgid "_Free indexes"
+msgstr ""
+
+#: dbaseindexdialog.ui:294
+msgctxt "dbaseindexdialog|label2"
+msgid "Assignment"
+msgstr ""
+
+#: dbasepage.ui:38
+msgctxt "dbasepage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: dbasepage.ui:68
+msgctxt "dbasepage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: dbasepage.ui:104
+msgctxt "dbasepage|showDelRowsCheckbutton"
+msgid "Display deleted records as well"
+msgstr ""
+
+#: dbasepage.ui:123
+msgctxt "dbasepage|specMessageLabel"
+msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
+msgstr ""
+
+#: dbasepage.ui:141
+msgctxt "dbasepage|label1"
+msgid "Optional Settings"
+msgstr ""
+
+#: dbasepage.ui:156
+msgctxt "dbasepage|indiciesButton"
+msgid "Indexes..."
+msgstr ""
+
+#: dbwizconnectionpage.ui:36
+msgctxt "dbwizconnectionpage|helptext"
+msgid "label"
+msgstr ""
+
+#: dbwizconnectionpage.ui:57
+msgctxt "dbwizconnectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr ""
+
+#: dbwizconnectionpage.ui:80
+msgctxt "dbwizconnectionpage|create"
+msgid "_Create New"
+msgstr ""
+
+#: dbwizconnectionpage.ui:94
+msgctxt "dbwizconnectionpage|browse"
+msgid "_Browse…"
+msgstr ""
+
+#: dbwizmysqlintropage.ui:38
+msgctxt "dbwizmysqlintropage|label2"
+msgid ""
+"You can connect to a MySQL database using either ODBC or JDBC.\n"
+"Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: dbwizmysqlintropage.ui:69
+msgctxt "dbwizmysqlintropage|odbc"
+msgid "Connect using ODBC (Open Database Connectivity)"
+msgstr ""
+
+#: dbwizmysqlintropage.ui:85
+msgctxt "dbwizmysqlintropage|jdbc"
+msgid "Connect using JDBC (Java Database Connectivity)"
+msgstr ""
+
+#: dbwizmysqlintropage.ui:103
+msgctxt "dbwizmysqlintropage|directly"
+msgid "Connect directly"
+msgstr ""
+
+#: dbwizmysqlintropage.ui:125
+msgctxt "dbwizmysqlintropage|label1"
+msgid "How do you want to connect to your MySQL database?"
+msgstr ""
+
+#: dbwizmysqlintropage.ui:143
+msgctxt "dbwizmysqlintropage|header"
+msgid "Set Up a Connection to a MySQL Database"
+msgstr ""
+
+#: dbwizmysqlnativepage.ui:41
+msgctxt "dbwizmysqlnativepage|helptext"
+msgid "Please enter the required information to connect to a MySQL database."
+msgstr ""
+
+#: dbwizmysqlnativepage.ui:76
+msgctxt "dbwizmysqlnativepage|header"
+msgid "Set Up a Connection to a MySQL Database"
+msgstr ""
+
+#: dbwizspreadsheetpage.ui:74
+msgctxt "dbwizspreadsheetpage|browse"
+msgid "Browse"
+msgstr ""
+
+#: dbwizspreadsheetpage.ui:90
+msgctxt "dbwizspreadsheetpage|create"
+msgid "Create New"
+msgstr ""
+
+#: dbwizspreadsheetpage.ui:148
+msgctxt "dbwizspreadsheetpage|passwordrequired"
+msgid "_Password required"
+msgstr ""
+
+#: dbwiztextpage.ui:74
+msgctxt "dbwiztextpage|browse"
+msgid "Browse"
+msgstr ""
+
+#: dbwiztextpage.ui:90
+msgctxt "dbwiztextpage|create"
+msgid "Create New"
+msgstr ""
+
+#: deleteallrowsdialog.ui:12
+msgctxt "deleteallrowsdialog|DeleteAllRowsDialog"
+msgid "You are trying to delete all the columns in the table. A table cannot exist without columns. Should the table be deleted from the database? If not, the table will remain unchanged."
+msgstr ""
+
+#: designsavemodifieddialog.ui:12
+msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr ""
+
+#: designsavemodifieddialog.ui:13
+msgctxt "designsavemodifieddialog|DesignSaveModifiedDialog"
+msgid "The relation design has been changed."
+msgstr ""
+
+#: directsqldialog.ui:9
+msgctxt "directsqldialog|DirectSQLDialog"
+msgid "Execute SQL Statement"
+msgstr ""
+
+#: directsqldialog.ui:92
+msgctxt "directsqldialog|sql_label"
+msgid "_Command to execute:"
+msgstr ""
+
+#: directsqldialog.ui:108
+msgctxt "directsqldialog|showoutput"
+msgid "_Show output of \"select\" statements"
+msgstr ""
+
+#: directsqldialog.ui:123
+msgctxt "directsqldialog|execute"
+msgid "_Execute"
+msgstr ""
+
+#: directsqldialog.ui:158
+msgctxt "directsqldialog|sqlhistory_label"
+msgid "_Previous commands:"
+msgstr ""
+
+#: directsqldialog.ui:175
+msgctxt "directsqldialog|label1"
+msgid "SQL Command"
+msgstr ""
+
+#: directsqldialog.ui:220
+msgctxt "directsqldialog|label2"
+msgid "Status"
+msgstr ""
+
+#: directsqldialog.ui:265
+msgctxt "directsqldialog|label3"
+msgid "Output"
+msgstr ""
+
+#: fielddialog.ui:8
+msgctxt "fielddialog|FieldDialog"
+msgid "Field Format"
+msgstr ""
+
+#: fielddialog.ui:111
+msgctxt "fielddialog|format"
+msgid "Format"
+msgstr ""
+
+#: fielddialog.ui:133
+msgctxt "fielddialog|alignment"
+msgid "Alignment"
+msgstr ""
+
+#: fielddialog.ui:152
+msgctxt "fielddialog|alttitle"
+msgid "Table Format"
+msgstr ""
+
+#: finalpagewizard.ui:17
+msgctxt "finalpagewizard|headerText"
+msgid "Decide How to Proceed After Saving the Database"
+msgstr ""
+
+#: finalpagewizard.ui:44
+msgctxt "finalpagewizard|helpText"
+msgid "Do you want the wizard to register the database in %PRODUCTNAME?"
+msgstr ""
+
+#: finalpagewizard.ui:56
+msgctxt "finalpagewizard|yesregister"
+msgid "_Yes, register the database for me"
+msgstr ""
+
+#: finalpagewizard.ui:74
+msgctxt "finalpagewizard|noregister"
+msgid "N_o, do not register the database"
+msgstr ""
+
+#: finalpagewizard.ui:105
+msgctxt "finalpagewizard|additionalText"
+msgid "After the database file has been saved, what do you want to do?"
+msgstr ""
+
+#: finalpagewizard.ui:116
+msgctxt "finalpagewizard|openediting"
+msgid "Open the database for editing"
+msgstr ""
+
+#: finalpagewizard.ui:132
+msgctxt "finalpagewizard|usewizard"
+msgid "Create tables using the table wizard"
+msgstr ""
+
+#: finalpagewizard.ui:156
+msgctxt "finalpagewizard|finishText"
+msgid "Click 'Finish' to save the database."
+msgstr ""
+
+#: generalpagedialog.ui:17
+msgctxt "generalpagedialog|datasourceTypePre"
+msgid "Select the type of database to which you want to establish a connection."
+msgstr ""
+
+#: generalpagedialog.ui:31
+msgctxt "generalpagedialog|datasourceTypeLabel"
+msgid "Database _type:"
+msgstr ""
+
+#: generalpagedialog.ui:59
+msgctxt "generalpagedialog|datasourceTypeHelp"
+msgid ""
+"On the following pages, you can make detailed settings for the connection.\n"
+"\n"
+"The new settings you make will overwrite your existing settings."
+msgstr ""
+
+#: generalpagewizard.ui:18
+msgctxt "generalpagewizard|headerText"
+msgid "Welcome to the %PRODUCTNAME Database Wizard"
+msgstr ""
+
+#: generalpagewizard.ui:35
+msgctxt "generalpagewizard|helpText"
+msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server."
+msgstr ""
+
+#: generalpagewizard.ui:50
+msgctxt "generalpagewizard|sourceTypeHeader"
+msgid "What do you want to do?"
+msgstr ""
+
+#: generalpagewizard.ui:61
+msgctxt "generalpagewizard|createDatabase"
+msgid "Create a n_ew database"
+msgstr ""
+
+#: generalpagewizard.ui:88
+msgctxt "generalpagewizard|embeddeddbLabel"
+msgid "_Embedded database:"
+msgstr ""
+
+#: generalpagewizard.ui:118
+msgctxt "generalpagewizard|openExistingDatabase"
+msgid "Open an existing database _file"
+msgstr ""
+
+#: generalpagewizard.ui:146
+msgctxt "generalpagewizard|docListLabel"
+msgid "_Recently used:"
+msgstr ""
+
+#: generalpagewizard.ui:179
+msgctxt "generalpagewizard|openDatabase"
+msgid "Open"
+msgstr ""
+
+#: generalpagewizard.ui:195
+msgctxt "generalpagewizard|connectDatabase"
+msgid "Connect to an e_xisting database"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:39
+msgctxt "generalspecialjdbcdetailspage|label2"
+msgid "_Host name:"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:53
+msgctxt "generalspecialjdbcdetailspage|label3"
+msgid "_Port number:"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:78
+msgctxt "generalspecialjdbcdetailspage|socketLabel"
+msgid "Socket:"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:90
+msgctxt "generalspecialjdbcdetailspage|driverClassLabel"
+msgid "MySQL JDBC d_river class:"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:112
+msgctxt "generalspecialjdbcdetailspage|testDriverClassButton"
+msgid "Test Class"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:162
+msgctxt "generalspecialjdbcdetailspage|label1"
+msgid "Connection Settings"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:199
+msgctxt "generalspecialjdbcdetailspage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: generalspecialjdbcdetailspage.ui:229
+msgctxt "generalspecialjdbcdetailspage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: generatedvaluespage.ui:29
+msgctxt "generatedvaluespage|autoretrieve"
+msgid "Re_trieve generated values"
+msgstr ""
+
+#: generatedvaluespage.ui:65
+msgctxt "generatedvaluespage|statementft"
+msgid "_Auto-increment statement:"
+msgstr ""
+
+#: generatedvaluespage.ui:103
+msgctxt "generatedvaluespage|queryft"
+msgid "_Query of generated values:"
+msgstr ""
+
+#: generatedvaluespage.ui:146
+msgctxt "generatedvaluespage|label1"
+msgid "Settings"
+msgstr ""
+
+#: indexdesigndialog.ui:9
+msgctxt "indexdesigndialog|IndexDesignDialog"
+msgid "Indexes"
+msgstr ""
+
+#: indexdesigndialog.ui:80
+msgctxt "indexdesigndialog|ID_INDEX_NEW"
+msgid "New Index"
+msgstr ""
+
+#: indexdesigndialog.ui:95
+msgctxt "indexdesigndialog|ID_INDEX_DROP"
+msgid "Delete Current Index"
+msgstr ""
+
+#: indexdesigndialog.ui:110
+msgctxt "indexdesigndialog|ID_INDEX_RENAME"
+msgid "Rename Current Index"
+msgstr ""
+
+#: indexdesigndialog.ui:125
+msgctxt "indexdesigndialog|ID_INDEX_SAVE"
+msgid "Save Current Index"
+msgstr ""
+
+#: indexdesigndialog.ui:140
+msgctxt "indexdesigndialog|ID_INDEX_RESET"
+msgid "Reset Current Index"
+msgstr ""
+
+#: indexdesigndialog.ui:276
+msgctxt "indexdesigndialog|DESC_LABEL"
+msgid "Index identifier:"
+msgstr ""
+
+#: indexdesigndialog.ui:297
+msgctxt "indexdesigndialog|UNIQUE"
+msgid "_Unique"
+msgstr ""
+
+#: indexdesigndialog.ui:319
+msgctxt "indexdesigndialog|FIELDS_LABEL"
+msgid "Fields:"
+msgstr ""
+
+#: indexdesigndialog.ui:352
+msgctxt "indexdesigndialog|INDEX_DETAILS"
+msgid "Index Details"
+msgstr ""
+
+#: jdbcconnectionpage.ui:20
+msgctxt "jdbcconnectionpage|header"
+msgid "Set Up a Connection to a JDBC Database"
+msgstr ""
+
+#: jdbcconnectionpage.ui:36
+msgctxt "jdbcconnectionpage|helptext"
+msgid "Please enter the required information to connect to a JDBC database. Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: jdbcconnectionpage.ui:57
+msgctxt "jdbcconnectionpage|browseurllabel"
+msgid "Path to the dBASE files:"
+msgstr ""
+
+#: jdbcconnectionpage.ui:80
+msgctxt "jdbcconnectionpage|create"
+msgid "_Create New"
+msgstr ""
+
+#: jdbcconnectionpage.ui:94
+msgctxt "jdbcconnectionpage|browse"
+msgid "_Browse…"
+msgstr ""
+
+#: jdbcconnectionpage.ui:126
+msgctxt "jdbcconnectionpage|jdbcLabel"
+msgid "JDBC d_river class:"
+msgstr ""
+
+#: jdbcconnectionpage.ui:156
+msgctxt "jdbcconnectionpage|jdbcButton"
+msgid "_Test Class"
+msgstr ""
+
+#: joindialog.ui:15
+msgctxt "joindialog|liststore1"
+msgid "Inner join"
+msgstr ""
+
+#: joindialog.ui:19
+msgctxt "joindialog|liststore1"
+msgid "Left join"
+msgstr ""
+
+#: joindialog.ui:23
+msgctxt "joindialog|liststore1"
+msgid "Right join"
+msgstr ""
+
+#: joindialog.ui:27
+msgctxt "joindialog|liststore1"
+msgid "Full (outer) join"
+msgstr ""
+
+#: joindialog.ui:31
+msgctxt "joindialog|liststore1"
+msgid "Cross join"
+msgstr ""
+
+#: joindialog.ui:39
+msgctxt "joindialog|JoinDialog"
+msgid "Join Properties"
+msgstr ""
+
+#: joindialog.ui:162
+msgctxt "joindialog|label1"
+msgid "Tables Involved"
+msgstr ""
+
+#: joindialog.ui:228
+msgctxt "joindialog|label2"
+msgid "Fields Involved"
+msgstr ""
+
+#: joindialog.ui:264
+msgctxt "joindialog|label5"
+msgid "_Type:"
+msgstr ""
+
+#: joindialog.ui:287
+msgctxt "joindialog|natural"
+msgid "Natural"
+msgstr ""
+
+#: joindialog.ui:311
+msgctxt "joindialog|label6"
+msgid "Options"
+msgstr ""
+
+#: jointablemenu.ui:12
+msgctxt "jointablemenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: joinviewmenu.ui:12
+msgctxt "joinviewmenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: joinviewmenu.ui:20
+msgctxt "joinviewmenu|edit"
+msgid "Edit..."
+msgstr ""
+
+#: keymenu.ui:12
+msgctxt "keymenu|primarykey"
+msgid "Primary Key"
+msgstr ""
+
+#: ldapconnectionpage.ui:18
+msgctxt "ldapconnectionpage|header"
+msgid "Set Up a Connection to an LDAP Directory"
+msgstr ""
+
+#: ldapconnectionpage.ui:34
+msgctxt "ldapconnectionpage|helpLabel"
+msgid "Please enter the required information to connect to an LDAP directory. Please contact your system administrator if you are unsure about the following settings."
+msgstr ""
+
+#: ldapconnectionpage.ui:57
+msgctxt "ldapconnectionpage|hostNameLabel"
+msgid "_Server:"
+msgstr ""
+
+#: ldapconnectionpage.ui:71
+msgctxt "ldapconnectionpage|portNumLabel"
+msgid "_Port number:"
+msgstr ""
+
+#: ldapconnectionpage.ui:113
+msgctxt "ldapconnectionpage|portNumDefLabel"
+msgid "Default: 389"
+msgstr ""
+
+#: ldapconnectionpage.ui:132
+msgctxt "ldapconnectionpage|baseDNLabel"
+msgid "Base _DN:"
+msgstr ""
+
+#: ldapconnectionpage.ui:161
+msgctxt "ldapconnectionpage|useSSLCheckbutton"
+msgid "Use _secure connection (SSL)"
+msgstr ""
+
+#: ldappage.ui:39
+msgctxt "ldappage|label1"
+msgid "_Base DN:"
+msgstr ""
+
+#: ldappage.ui:61
+msgctxt "ldappage|useSSLCheckbutton"
+msgid "Use secure connection (SSL)"
+msgstr ""
+
+#: ldappage.ui:80
+msgctxt "ldappage|label2"
+msgid "_Port number:"
+msgstr ""
+
+#: ldappage.ui:105
+msgctxt "ldappage|label3"
+msgid "Maximum number of _records:"
+msgstr ""
+
+#: ldappage.ui:133
+msgctxt "ldappage|charsetheader"
+msgid "Connection Settings"
+msgstr ""
+
+#: migratepage.ui:17
+msgctxt "migratepage|label1"
+msgid "Migration Progress"
+msgstr ""
+
+#: migratepage.ui:34
+msgctxt "migratepage|count"
+msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
+msgstr ""
+
+#: migratepage.ui:50
+msgctxt "migratepage|done"
+msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
+msgstr ""
+
+#: migratepage.ui:71
+msgctxt "migratepage|label4"
+msgid "Overall progress:"
+msgstr ""
+
+#: migratepage.ui:83
+msgctxt "migratepage|overall"
+msgid "document $current$ of $overall$"
+msgstr ""
+
+#: migratepage.ui:123
+msgctxt "migratepage|label6"
+msgid "Current progress:"
+msgstr ""
+
+#: migratepage.ui:174
+msgctxt "migratepage|label5"
+msgid "Current object:"
+msgstr ""
+
+#: mysqlnativepage.ui:48
+msgctxt "mysqlnativepage|connectionheader"
+msgid "Connection Settings"
+msgstr ""
+
+#: mysqlnativepage.ui:90
+msgctxt "mysqlnativepage|usernamelabel"
+msgid "_User name:"
+msgstr ""
+
+#: mysqlnativepage.ui:113
+msgctxt "mysqlnativepage|passwordrequired"
+msgid "Password required"
+msgstr ""
+
+#: mysqlnativepage.ui:137
+msgctxt "mysqlnativepage|userheader"
+msgid "User Authentication"
+msgstr ""
+
+#: mysqlnativepage.ui:176
+msgctxt "mysqlnativepage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: mysqlnativepage.ui:206
+msgctxt "mysqlnativepage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: mysqlnativesettings.ui:25
+msgctxt "mysqlnativesettings|dbnamelabel"
+msgid "_Database name:"
+msgstr ""
+
+#: mysqlnativesettings.ui:63
+msgctxt "mysqlnativesettings|hostport"
+msgid "Se_rver/port"
+msgstr ""
+
+#: mysqlnativesettings.ui:96
+msgctxt "mysqlnativesettings|serverlabel"
+msgid "_Server:"
+msgstr ""
+
+#: mysqlnativesettings.ui:110
+msgctxt "mysqlnativesettings|portlabel"
+msgid "_Port:"
+msgstr ""
+
+#: mysqlnativesettings.ui:138
+msgctxt "mysqlnativesettings|defaultport"
+msgid "Default: 3306"
+msgstr ""
+
+#: mysqlnativesettings.ui:182
+msgctxt "mysqlnativesettings|socketlabel"
+msgid "So_cket:"
+msgstr ""
+
+#: mysqlnativesettings.ui:225
+msgctxt "mysqlnativesettings|namedpipelabel"
+msgid "Named p_ipe:"
+msgstr ""
+
+#: namematchingpage.ui:48
+msgctxt "namematchingpage|all"
+msgid "_All"
+msgstr ""
+
+#: namematchingpage.ui:65
+msgctxt "namematchingpage|none"
+msgid "Non_e"
+msgstr ""
+
+#: namematchingpage.ui:101
+msgctxt "namematchingpage|leftlabel"
+msgid "Source table: "
+msgstr ""
+
+#: namematchingpage.ui:146
+msgctxt "namematchingpage|rightlabel"
+msgid "Destination table: "
+msgstr ""
+
+#: odbcpage.ui:38
+msgctxt "odbcpage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: odbcpage.ui:68
+msgctxt "odbcpage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: odbcpage.ui:112
+msgctxt "odbcpage|optionslabel"
+msgid "ODBC _options:"
+msgstr ""
+
+#: odbcpage.ui:143
+msgctxt "odbcpage|useCatalogCheckbutton"
+msgid "Use catalog for file-based databases"
+msgstr ""
+
+#: odbcpage.ui:165
+msgctxt "odbcpage|label1"
+msgid "Optional Settings"
+msgstr ""
+
+#: parametersdialog.ui:10
+msgctxt "parametersdialog|Parameters"
+msgid "Parameter Input"
+msgstr ""
+
+#: parametersdialog.ui:122
+msgctxt "parametersdialog|label2"
+msgid "_Value:"
+msgstr ""
+
+#: parametersdialog.ui:153
+msgctxt "parametersdialog|next"
+msgid "_Next"
+msgstr ""
+
+#: parametersdialog.ui:181
+msgctxt "parametersdialog|label1"
+msgid "_Parameters"
+msgstr ""
+
+#: password.ui:8
+msgctxt "password|PasswordDialog"
+msgid "Change Password"
+msgstr ""
+
+#: password.ui:120
+msgctxt "password|label2"
+msgid "Old p_assword:"
+msgstr ""
+
+#: password.ui:134
+msgctxt "password|label3"
+msgid "_Password:"
+msgstr ""
+
+#: password.ui:148
+msgctxt "password|label4"
+msgid "_Confirm password:"
+msgstr ""
+
+#: password.ui:177
+msgctxt "password|label1"
+msgid "User “$name$: $”"
+msgstr ""
+
+#: preparepage.ui:17
+msgctxt "preparepage|label1"
+msgid "Welcome to the Database Macro Migration Wizard"
+msgstr ""
+
+#: preparepage.ui:34
+msgctxt "preparepage|label2"
+msgid ""
+"This wizard will guide you through the task of migrating your macros.\n"
+"\n"
+"After you finished it, all macros which were formerly embedded into the forms and reports of the current database document will have been moved to the document itself. In this course, libraries will be renamed as needed.\n"
+"\n"
+"If your forms and reports contain references to those macros, they will be adjusted, where possible.\n"
+"\n"
+"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
+msgstr ""
+
+#: preparepage.ui:56
+msgctxt "preparepage|closedocerror"
+msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
+msgstr ""
+
+#: querycolmenu.ui:12
+msgctxt "querycolmenu|width"
+msgid "Column _Width..."
+msgstr ""
+
+#: querycolmenu.ui:26
+msgctxt "querycolmenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: queryfilterdialog.ui:8
+msgctxt "queryfilterdialog|QueryFilterDialog"
+msgid "Standard Filter"
+msgstr ""
+
+#: queryfilterdialog.ui:96
+msgctxt "queryfilterdialog|label2"
+msgid "Operator"
+msgstr ""
+
+#: queryfilterdialog.ui:108
+msgctxt "queryfilterdialog|label5"
+msgid "Field name"
+msgstr ""
+
+#: queryfilterdialog.ui:120
+msgctxt "queryfilterdialog|label6"
+msgid "Condition"
+msgstr ""
+
+#: queryfilterdialog.ui:134
+msgctxt "queryfilterdialog|field1"
+msgid "- none -"
+msgstr ""
+
+#: queryfilterdialog.ui:148
+msgctxt "queryfilterdialog|cond1"
+msgid "="
+msgstr ""
+
+#: queryfilterdialog.ui:149
+msgctxt "queryfilterdialog|cond1"
+msgid "<>"
+msgstr ""
+
+#: queryfilterdialog.ui:150
+msgctxt "queryfilterdialog|cond1"
+msgid "<"
+msgstr ""
+
+#: queryfilterdialog.ui:151
+msgctxt "queryfilterdialog|cond1"
+msgid "<="
+msgstr ""
+
+#: queryfilterdialog.ui:152
+msgctxt "queryfilterdialog|cond1"
+msgid ">"
+msgstr ""
+
+#: queryfilterdialog.ui:153
+msgctxt "queryfilterdialog|cond1"
+msgid ">="
+msgstr ""
+
+#: queryfilterdialog.ui:154
+msgctxt "queryfilterdialog|cond1"
+msgid "like"
+msgstr ""
+
+#: queryfilterdialog.ui:155
+msgctxt "queryfilterdialog|cond1"
+msgid "not like"
+msgstr ""
+
+#: queryfilterdialog.ui:156
+msgctxt "queryfilterdialog|cond1"
+msgid "null"
+msgstr ""
+
+#: queryfilterdialog.ui:157
+msgctxt "queryfilterdialog|cond1"
+msgid "not null"
+msgstr ""
+
+#: queryfilterdialog.ui:171
+msgctxt "queryfilterdialog|field2"
+msgid "- none -"
+msgstr ""
+
+#: queryfilterdialog.ui:185
+msgctxt "queryfilterdialog|field3"
+msgid "- none -"
+msgstr ""
+
+#: queryfilterdialog.ui:219
+msgctxt "queryfilterdialog|label7"
+msgid "Value"
+msgstr ""
+
+#: queryfilterdialog.ui:263
+msgctxt "queryfilterdialog|op2"
+msgid "AND"
+msgstr ""
+
+#: queryfilterdialog.ui:264
+msgctxt "queryfilterdialog|op2"
+msgid "OR"
+msgstr ""
+
+#: queryfilterdialog.ui:278
+msgctxt "queryfilterdialog|op3"
+msgid "AND"
+msgstr ""
+
+#: queryfilterdialog.ui:279
+msgctxt "queryfilterdialog|op3"
+msgid "OR"
+msgstr ""
+
+#: queryfilterdialog.ui:298
+msgctxt "queryfilterdialog|label1"
+msgid "Criteria"
+msgstr ""
+
+#: queryfuncmenu.ui:12
+msgctxt "queryfuncmenu|functions"
+msgid "Functions"
+msgstr ""
+
+#: queryfuncmenu.ui:26
+msgctxt "queryfuncmenu|tablename"
+msgid "Table Name"
+msgstr ""
+
+#: queryfuncmenu.ui:34
+msgctxt "queryfuncmenu|alias"
+msgid "Alias"
+msgstr ""
+
+#: queryfuncmenu.ui:48
+msgctxt "queryfuncmenu|distinct"
+msgid "Distinct Values"
+msgstr ""
+
+#: querypropertiesdialog.ui:9
+msgctxt "querypropertiesdialog|QueryPropertiesDialog"
+msgid "Query Properties"
+msgstr ""
+
+#: querypropertiesdialog.ui:101
+msgctxt "querypropertiesdialog|limit-label"
+msgid "Limit:"
+msgstr ""
+
+#: querypropertiesdialog.ui:117
+msgctxt "querypropertiesdialog|distinct"
+msgid "Yes"
+msgstr ""
+
+#: querypropertiesdialog.ui:133
+msgctxt "querypropertiesdialog|nondistinct"
+msgid "No"
+msgstr ""
+
+#: querypropertiesdialog.ui:160
+msgctxt "querypropertiesdialog|distinctvalues"
+msgid "Distinct values:"
+msgstr ""
+
+#: relationdialog.ui:9
+msgctxt "relationdialog|RelationDialog"
+msgid "Relations"
+msgstr ""
+
+#: relationdialog.ui:132
+msgctxt "relationdialog|label1"
+msgid "Tables Involved"
+msgstr ""
+
+#: relationdialog.ui:173
+msgctxt "relationdialog|label2"
+msgid "Fields Involved"
+msgstr ""
+
+#: relationdialog.ui:211
+msgctxt "relationdialog|addaction"
+msgid "_No action"
+msgstr ""
+
+#: relationdialog.ui:228
+msgctxt "relationdialog|addcascade"
+msgid "_Update cascade"
+msgstr ""
+
+#: relationdialog.ui:244
+msgctxt "relationdialog|addnull"
+msgid "_Set null"
+msgstr ""
+
+#: relationdialog.ui:260
+msgctxt "relationdialog|adddefault"
+msgid "Set _default"
+msgstr ""
+
+#: relationdialog.ui:282
+msgctxt "relationdialog|label3"
+msgid "Update Options"
+msgstr ""
+
+#: relationdialog.ui:315
+msgctxt "relationdialog|delaction"
+msgid "_No action"
+msgstr ""
+
+#: relationdialog.ui:331
+msgctxt "relationdialog|delcascade"
+msgid "Delete _cascade"
+msgstr ""
+
+#: relationdialog.ui:346
+msgctxt "relationdialog|delnull"
+msgid "_Set null"
+msgstr ""
+
+#: relationdialog.ui:361
+msgctxt "relationdialog|deldefault"
+msgid "Set _default"
+msgstr ""
+
+#: relationdialog.ui:382
+msgctxt "relationdialog|label4"
+msgid "Delete Options"
+msgstr ""
+
+#: relationdialog.ui:435
+msgctxt "relationdialog|liststore1"
+msgid "Inner join"
+msgstr ""
+
+#: relationdialog.ui:439
+msgctxt "relationdialog|liststore1"
+msgid "Left join"
+msgstr ""
+
+#: relationdialog.ui:443
+msgctxt "relationdialog|liststore1"
+msgid "Right join"
+msgstr ""
+
+#: relationdialog.ui:447
+msgctxt "relationdialog|liststore1"
+msgid "Full (outer) join"
+msgstr ""
+
+#: relationdialog.ui:451
+msgctxt "relationdialog|liststore1"
+msgid "Cross join"
+msgstr ""
+
+#: rowheightdialog.ui:15
+msgctxt "rowheightdialog|RowHeightDialog"
+msgid "Row Height"
+msgstr ""
+
+#: rowheightdialog.ui:94
+msgctxt "rowheightdialog|label1"
+msgid "_Height:"
+msgstr ""
+
+#: rowheightdialog.ui:119
+msgctxt "rowheightdialog|automatic"
+msgid "_Automatic"
+msgstr ""
+
+#: rtfcopytabledialog.ui:9
+msgctxt "rtfcopytabledialog|RTFCopyTable"
+msgid "Copy RTF Table"
+msgstr ""
+
+#: savedialog.ui:9
+msgctxt "savedialog|SaveDialog"
+msgid "Save As"
+msgstr ""
+
+#: savedialog.ui:85
+msgctxt "savedialog|descriptionft"
+msgid "Please enter a name for the object to be created:"
+msgstr ""
+
+#: savedialog.ui:100
+msgctxt "savedialog|catalogft"
+msgid "_Catalog:"
+msgstr ""
+
+#: savedialog.ui:114
+msgctxt "savedialog|schemaft"
+msgid "_Schema:"
+msgstr ""
+
+#: saveindexdialog.ui:8
+msgctxt "saveindexdialog|SaveIndexDialog"
+msgid "Exit Index Design"
+msgstr ""
+
+#: saveindexdialog.ui:13
+msgctxt "saveindexdialog|SaveIndexDialog"
+msgid "Do you want to save the changes made to the current index?"
+msgstr ""
+
+#: savemodifieddialog.ui:12
+msgctxt "savemodifieddialog|SaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr ""
+
+#: savemodifieddialog.ui:13
+msgctxt "savemodifieddialog|SaveModifiedDialog"
+msgid "The current record has been changed."
+msgstr ""
+
+#: sortdialog.ui:8
+msgctxt "sortdialog|SortDialog"
+msgid "Sort Order"
+msgstr ""
+
+#: sortdialog.ui:96
+msgctxt "sortdialog|label2"
+msgid "Operator"
+msgstr ""
+
+#: sortdialog.ui:109
+msgctxt "sortdialog|label3"
+msgid "and then"
+msgstr ""
+
+#: sortdialog.ui:122
+msgctxt "sortdialog|label4"
+msgid "and then"
+msgstr ""
+
+#: sortdialog.ui:134
+msgctxt "sortdialog|label5"
+msgid "Field name"
+msgstr ""
+
+#: sortdialog.ui:146
+msgctxt "sortdialog|label6"
+msgid "Order"
+msgstr ""
+
+#: sortdialog.ui:171
+msgctxt "sortdialog|value1"
+msgid "ascending"
+msgstr ""
+
+#: sortdialog.ui:172
+msgctxt "sortdialog|value1"
+msgid "descending"
+msgstr ""
+
+#: sortdialog.ui:208
+msgctxt "sortdialog|value2"
+msgid "ascending"
+msgstr ""
+
+#: sortdialog.ui:209
+msgctxt "sortdialog|value2"
+msgid "descending"
+msgstr ""
+
+#: sortdialog.ui:223
+msgctxt "sortdialog|value3"
+msgid "ascending"
+msgstr ""
+
+#: sortdialog.ui:224
+msgctxt "sortdialog|value3"
+msgid "descending"
+msgstr ""
+
+#: sortdialog.ui:243
+msgctxt "sortdialog|label1"
+msgid "Sort Order"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:19
+msgctxt "specialjdbcconnectionpage|header"
+msgid "Set up connection to a MySQL database using JDBC"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:35
+msgctxt "specialjdbcconnectionpage|helpLabel"
+msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:58
+msgctxt "specialjdbcconnectionpage|dbNameLabel"
+msgid "_Database name:"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:72
+msgctxt "specialjdbcconnectionpage|hostNameLabel"
+msgid "_Server:"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:86
+msgctxt "specialjdbcconnectionpage|portNumLabel"
+msgid "_Port number:"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:139
+msgctxt "specialjdbcconnectionpage|portNumDefLabel"
+msgid "Default: 3306"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:173
+msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
+msgid "MySQL JDBC d_river class:"
+msgstr ""
+
+#: specialjdbcconnectionpage.ui:195
+msgctxt "specialjdbcconnectionpage|testDriverButton"
+msgid "_Test Class"
+msgstr ""
+
+#: specialsettingspage.ui:18
+msgctxt "specialsettingspage|usesql92"
+msgid "Use SQL92 naming constraints"
+msgstr ""
+
+#: specialsettingspage.ui:35
+msgctxt "specialsettingspage|append"
+msgid "Append the table alias name on SELECT statements"
+msgstr ""
+
+#: specialsettingspage.ui:52
+msgctxt "specialsettingspage|useas"
+msgid "Use keyword AS before table alias names"
+msgstr ""
+
+#: specialsettingspage.ui:69
+msgctxt "specialsettingspage|useoj"
+msgid "Use Outer Join syntax '{oj }'"
+msgstr ""
+
+#: specialsettingspage.ui:86
+msgctxt "specialsettingspage|ignoreprivs"
+msgid "Ignore the privileges from the database driver"
+msgstr ""
+
+#: specialsettingspage.ui:103
+msgctxt "specialsettingspage|replaceparams"
+msgid "Replace named parameters with '?'"
+msgstr ""
+
+#: specialsettingspage.ui:120
+msgctxt "specialsettingspage|displayver"
+msgid "Display version columns (when available)"
+msgstr ""
+
+#: specialsettingspage.ui:137
+msgctxt "specialsettingspage|usecatalogname"
+msgid "Use catalog name in SELECT statements"
+msgstr ""
+
+#: specialsettingspage.ui:154
+msgctxt "specialsettingspage|useschemaname"
+msgid "Use schema name in SELECT statements"
+msgstr ""
+
+#: specialsettingspage.ui:171
+msgctxt "specialsettingspage|createindex"
+msgid "Create index with ASC or DESC statement"
+msgstr ""
+
+#: specialsettingspage.ui:188
+msgctxt "specialsettingspage|eol"
+msgid "End text lines with CR+LF"
+msgstr ""
+
+#: specialsettingspage.ui:205
+msgctxt "specialsettingspage|ignorecurrency"
+msgid "Ignore currency field information"
+msgstr ""
+
+#: specialsettingspage.ui:222
+msgctxt "specialsettingspage|inputchecks"
+msgid "Form data input checks for required fields"
+msgstr ""
+
+#: specialsettingspage.ui:239
+msgctxt "specialsettingspage|useodbcliterals"
+msgid "Use ODBC conformant date/time literals"
+msgstr ""
+
+#: specialsettingspage.ui:256
+msgctxt "specialsettingspage|primarykeys"
+msgid "Supports primary keys"
+msgstr ""
+
+#: specialsettingspage.ui:273
+msgctxt "specialsettingspage|resulttype"
+msgid "Respect the result set type from the database driver"
+msgstr ""
+
+#: specialsettingspage.ui:299
+msgctxt "specialsettingspage|comparisonft"
+msgid "Comparison of Boolean values:"
+msgstr ""
+
+#: specialsettingspage.ui:315
+msgctxt "specialsettingspage|comparison"
+msgid "Default"
+msgstr ""
+
+#: specialsettingspage.ui:316
+msgctxt "specialsettingspage|comparison"
+msgid "SQL"
+msgstr ""
+
+#: specialsettingspage.ui:317
+msgctxt "specialsettingspage|comparison"
+msgid "Mixed"
+msgstr ""
+
+#: specialsettingspage.ui:318
+msgctxt "specialsettingspage|comparison"
+msgid "MS Access"
+msgstr ""
+
+#: specialsettingspage.ui:333
+msgctxt "specialsettingspage|rowsft"
+msgid "Rows to scan column types:"
+msgstr ""
+
+#: sqlexception.ui:9
+msgctxt "sqlexception|SQLExceptionDialog"
+msgid "Error Details"
+msgstr ""
+
+#: sqlexception.ui:58
+msgctxt "sqlexception|label2"
+msgid "Error _list:"
+msgstr ""
+
+#: sqlexception.ui:72
+msgctxt "sqlexception|label3"
+msgid "_Description:"
+msgstr ""
+
+#: summarypage.ui:17
+msgctxt "summarypage|label1"
+msgid "Summary"
+msgstr ""
+
+#: summarypage.ui:34
+msgctxt "summarypage|success"
+msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
+msgstr ""
+
+#: summarypage.ui:50
+msgctxt "summarypage|failure"
+msgid "The migration was not successful. Examine the migration log below for details."
+msgstr ""
+
+#: tabledesignrowmenu.ui:12
+msgctxt "tabledesignrowmenu|cut"
+msgid "Cu_t"
+msgstr ""
+
+#: tabledesignrowmenu.ui:20
+msgctxt "tabledesignrowmenu|copy"
+msgid "_Copy"
+msgstr ""
+
+#: tabledesignrowmenu.ui:28
+msgctxt "tabledesignrowmenu|paste"
+msgid "_Paste"
+msgstr ""
+
+#: tabledesignrowmenu.ui:35
+msgctxt "tabledesignrowmenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: tabledesignrowmenu.ui:42
+msgctxt "tabledesignrowmenu|insert"
+msgid "Insert Rows"
+msgstr ""
+
+#: tabledesignrowmenu.ui:55
+msgctxt "tabledesignrowmenu|primarykey"
+msgid "Primary Key"
+msgstr ""
+
+#: tabledesignsavemodifieddialog.ui:12
+msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
+msgid "Do you want to save the changes?"
+msgstr ""
+
+#: tabledesignsavemodifieddialog.ui:13
+msgctxt "tabledesignsavemodifieddialog|TableDesignSaveModifiedDialog"
+msgid "The table has been changed."
+msgstr ""
+
+#: tablesfilterdialog.ui:8
+msgctxt "tablesfilterdialog|TablesFilterDialog"
+msgid "Tables Filter"
+msgstr ""
+
+#: tablesfilterpage.ui:34
+msgctxt "tablesfilterpage|label2"
+msgid "Mark the tables that should be visible for the applications."
+msgstr ""
+
+#: tablesfilterpage.ui:70
+msgctxt "tablesfilterpage|label1"
+msgid "Tables and Table Filter"
+msgstr ""
+
+#: tablesjoindialog.ui:82
+msgctxt "tablesjoindialog|tables"
+msgid "Tables"
+msgstr ""
+
+#: tablesjoindialog.ui:99
+msgctxt "tablesjoindialog|queries"
+msgid "Queries"
+msgstr ""
+
+#: tablesjoindialog.ui:132
+msgctxt "tablesjoindialog|title"
+msgid "Add Tables"
+msgstr ""
+
+#: tablesjoindialog.ui:143
+msgctxt "tablesjoindialog|alttitle"
+msgid "Add Table or Query"
+msgstr ""
+
+#: textconnectionsettings.ui:8
+msgctxt "textconnectionsettings|TextConnectionSettingsDialog"
+msgid "Text Connection Settings"
+msgstr ""
+
+#: textpage.ui:39
+msgctxt "textpage|textfile"
+msgid "Plain text files (*.txt)"
+msgstr ""
+
+#: textpage.ui:56
+msgctxt "textpage|csvfile"
+msgid "Comma-separated value files (*.csv)"
+msgstr ""
+
+#: textpage.ui:73
+msgctxt "textpage|custom"
+msgid "Custom:"
+msgstr ""
+
+#: textpage.ui:106
+msgctxt "textpage|example"
+msgid "Custom: *.abc"
+msgstr ""
+
+#: textpage.ui:121
+msgctxt "textpage|extensionheader"
+msgid "Specify the Type of Files You Want to Access"
+msgstr ""
+
+#: textpage.ui:159
+msgctxt "textpage|containsheaders"
+msgid "_Text contains headers"
+msgstr ""
+
+#: textpage.ui:181
+msgctxt "textpage|fieldlabel"
+msgid "Field separator:"
+msgstr ""
+
+#: textpage.ui:195
+msgctxt "textpage|textlabel"
+msgid "Text separator:"
+msgstr ""
+
+#: textpage.ui:209
+msgctxt "textpage|decimallabel"
+msgid "Decimal separator:"
+msgstr ""
+
+#: textpage.ui:223
+msgctxt "textpage|thousandslabel"
+msgid "Thousands separator:"
+msgstr ""
+
+#: textpage.ui:273
+msgctxt "textpage|decimalseparator"
+msgid "."
+msgstr ""
+
+#: textpage.ui:274
+msgctxt "textpage|decimalseparator"
+msgid ","
+msgstr ""
+
+#: textpage.ui:275
+msgctxt "textpage|decimalseparator"
+msgid ";"
+msgstr ""
+
+#: textpage.ui:276
+msgctxt "textpage|decimalseparator"
+msgid ":"
+msgstr ""
+
+#: textpage.ui:296
+msgctxt "textpage|thousandsseparator"
+msgid "."
+msgstr ""
+
+#: textpage.ui:297
+msgctxt "textpage|thousandsseparator"
+msgid ","
+msgstr ""
+
+#: textpage.ui:318
+msgctxt "textpage|formatlabel"
+msgid "Row Format"
+msgstr ""
+
+#: textpage.ui:359
+msgctxt "textpage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: textpage.ui:389
+msgctxt "textpage|charsetheader"
+msgid "Data Conversion"
+msgstr ""
+
+#: typeselectpage.ui:71
+msgctxt "typeselectpage|columns"
+msgid "Column Information"
+msgstr ""
+
+#: typeselectpage.ui:110
+msgctxt "typeselectpage|autolabel"
+msgid "Lines (ma_x.):"
+msgstr ""
+
+#: typeselectpage.ui:121
+msgctxt "typeselectpage|autobutton"
+msgid "_Auto"
+msgstr ""
+
+#: typeselectpage.ui:153
+msgctxt "typeselectpage|autotype"
+msgid "Automatic Type Recognition"
+msgstr ""
+
+#: useradmindialog.ui:8
+msgctxt "useradmindialog|UserAdminDialog"
+msgid "User Administration"
+msgstr ""
+
+#: useradmindialog.ui:92
+msgctxt "useradmindialog|settings"
+msgid "User Settings"
+msgstr ""
+
+#: useradminpage.ui:47
+msgctxt "useradminpage|label3"
+msgid "Us_er:"
+msgstr ""
+
+#: useradminpage.ui:83
+msgctxt "useradminpage|add"
+msgid "_Add User..."
+msgstr ""
+
+#: useradminpage.ui:98
+msgctxt "useradminpage|changepass"
+msgid "Change _Password..."
+msgstr ""
+
+#: useradminpage.ui:113
+msgctxt "useradminpage|delete"
+msgid "_Delete User..."
+msgstr ""
+
+#: useradminpage.ui:141
+msgctxt "useradminpage|label1"
+msgid "User Selection"
+msgstr ""
+
+#: useradminpage.ui:180
+msgctxt "useradminpage|label2"
+msgid "Access Rights for Selected User"
+msgstr ""
+
+#: userdetailspage.ui:40
+msgctxt "userdetailspage|hostnameft"
+msgid "_Host name:"
+msgstr ""
+
+#: userdetailspage.ui:56
+msgctxt "userdetailspage|portnumberft"
+msgid "_Port number:"
+msgstr ""
+
+#: userdetailspage.ui:89
+msgctxt "userdetailspage|usecatalog"
+msgid "_Use catalog"
+msgstr ""
+
+#: userdetailspage.ui:109
+msgctxt "userdetailspage|optionslabel"
+msgid "_Driver settings:"
+msgstr ""
+
+#: userdetailspage.ui:137
+msgctxt "userdetailspage|label1"
+msgid "Connection Settings"
+msgstr ""
+
+#: userdetailspage.ui:175
+msgctxt "userdetailspage|charsetlabel"
+msgid "_Character set:"
+msgstr ""
+
+#: userdetailspage.ui:205
+msgctxt "userdetailspage|charsetheader"
+msgid "Data conversion"
+msgstr ""
diff --git a/source/en-ZA/desktop/messages.po b/source/en-ZA/desktop/messages.po
index dcc2718afe3..66eb0132f8f 100644
--- a/source/en-ZA/desktop/messages.po
+++ b/source/en-ZA/desktop/messages.po
@@ -1,9 +1,9 @@
-#. extracted from desktop/uiconfig/ui
+#. extracted from desktop/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,237 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: dependenciesdialog.ui:9
-msgctxt "dependenciesdialog|Dependencies"
-msgid "System dependencies check"
-msgstr ""
-
-#: dependenciesdialog.ui:60
-msgctxt "dependenciesdialog|label1"
-msgid "The extension cannot be installed as the following system dependencies are not fulfilled:"
-msgstr ""
-
-#: extensionmanager.ui:9
-msgctxt "extensionmanager|ExtensionManagerDialog"
-msgid "Extension Manager"
-msgstr "Extension Manager"
-
-#: extensionmanager.ui:82
-msgctxt "extensionmanager|optionsbtn"
-msgid "_Options"
-msgstr ""
-
-#: extensionmanager.ui:96
-msgctxt "extensionmanager|updatebtn"
-msgid "Check for _Updates"
-msgstr ""
-
-#: extensionmanager.ui:111
-msgctxt "extensionmanager|addbtn"
-msgid "_Add"
-msgstr ""
-
-#: extensionmanager.ui:128
-msgctxt "extensionmanager|removebtn"
-msgid "_Remove"
-msgstr ""
-
-#: extensionmanager.ui:143
-msgctxt "extensionmanager|enablebtn"
-msgid "_Enable"
-msgstr ""
-
-#: extensionmanager.ui:187
-msgctxt "extensionmanager|shared"
-msgid "Installed for all users"
-msgstr ""
-
-#: extensionmanager.ui:203
-msgctxt "extensionmanager|user"
-msgid "Installed for current user"
-msgstr ""
-
-#: extensionmanager.ui:219
-msgctxt "extensionmanager|bundled"
-msgid "Bundled with %PRODUCTNAME"
-msgstr ""
-
-#: extensionmanager.ui:241
-msgctxt "extensionmanager|label1"
-msgid "Display Extensions"
-msgstr ""
-
-#: extensionmanager.ui:263
-msgctxt "extensionmanager|progressft"
-msgid "Adding %EXTENSION_NAME"
-msgstr "Adding %EXTENSION_NAME"
-
-#: extensionmanager.ui:298
-msgctxt "extensionmanager|getextensions"
-msgid "Get more extensions online..."
-msgstr "Get more extensions online..."
-
-#: installforalldialog.ui:12
-msgctxt "installforalldialog|InstallForAllDialog"
-msgid "For whom do you want to install the extension?"
-msgstr ""
-
-#: installforalldialog.ui:13
-msgctxt "installforalldialog|InstallForAllDialog"
-msgid "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment."
-msgstr ""
-
-#: installforalldialog.ui:25
-msgctxt "installforalldialog|no"
-msgid "_For all users"
-msgstr ""
-
-#: installforalldialog.ui:39
-msgctxt "installforalldialog|yes"
-msgid "_Only for me"
-msgstr ""
-
-#: licensedialog.ui:8
-msgctxt "licensedialog|LicenseDialog"
-msgid "Extension Software License Agreement"
-msgstr ""
-
-#: licensedialog.ui:21
-msgctxt "licensedialog|accept"
-msgid "Accept"
-msgstr ""
-
-#: licensedialog.ui:36
-msgctxt "licensedialog|decline"
-msgid "Decline"
-msgstr ""
-
-#: licensedialog.ui:67
-msgctxt "licensedialog|head"
-msgid "Please follow these steps to proceed with the installation of the extension:"
-msgstr ""
-
-#: licensedialog.ui:90
-msgctxt "licensedialog|label2"
-msgid "1."
-msgstr ""
-
-#: licensedialog.ui:105
-msgctxt "licensedialog|label3"
-msgid "2."
-msgstr ""
-
-#: licensedialog.ui:149
-msgctxt "licensedialog|label4"
-msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text."
-msgstr ""
-
-#: licensedialog.ui:167
-msgctxt "licensedialog|label5"
-msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
-msgstr ""
-
-#: licensedialog.ui:180
-msgctxt "licensedialog|down"
-msgid "_Scroll Down"
-msgstr ""
-
-#: showlicensedialog.ui:7
-msgctxt "showlicensedialog|ShowLicenseDialog"
-msgid "Extension Software License Agreement"
-msgstr ""
-
-#: updatedialog.ui:10
-msgctxt "updatedialog|UpdateDialog"
-msgid "Extension Update"
-msgstr ""
-
-#: updatedialog.ui:38
-msgctxt "updatedialog|INSTALL"
-msgid "_Install"
-msgstr ""
-
-#: updatedialog.ui:104
-msgctxt "updatedialog|UPDATE_LABEL"
-msgid "_Available extension updates"
-msgstr ""
-
-#: updatedialog.ui:117
-msgctxt "updatedialog|UPDATE_CHECKING"
-msgid "Checking..."
-msgstr ""
-
-#: updatedialog.ui:160
-msgctxt "updatedialog|UPDATE_ALL"
-msgid "_Show all updates"
-msgstr ""
-
-#: updatedialog.ui:196
-msgctxt "updatedialog|DESCRIPTION_LABEL"
-msgid "Description"
-msgstr ""
-
-#: updatedialog.ui:214
-msgctxt "updatedialog|PUBLISHER_LABEL"
-msgid "Publisher:"
-msgstr ""
-
-#: updatedialog.ui:225
-msgctxt "updatedialog|PUBLISHER_LINK"
-msgid "button"
-msgstr ""
-
-#: updatedialog.ui:242
-msgctxt "updatedialog|RELEASE_NOTES_LABEL"
-msgid "What is new:"
-msgstr ""
-
-#: updatedialog.ui:253
-msgctxt "updatedialog|RELEASE_NOTES_LINK"
-msgid "Release notes"
-msgstr ""
-
-#: updateinstalldialog.ui:8
-msgctxt "updateinstalldialog|UpdateInstallDialog"
-msgid "Download and Installation"
-msgstr ""
-
-#: updateinstalldialog.ui:87
-msgctxt "updateinstalldialog|DOWNLOADING"
-msgid "Downloading extensions..."
-msgstr ""
-
-#: updateinstalldialog.ui:125
-msgctxt "updateinstalldialog|RESULTS"
-msgid "Result"
-msgstr ""
-
-#: updaterequireddialog.ui:9
-msgctxt "updaterequireddialog|UpdateRequiredDialog"
-msgid "Extension Update Required"
-msgstr ""
-
-#: updaterequireddialog.ui:26
-msgctxt "updaterequireddialog|updatelabel"
-msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
-msgstr ""
-
-#: updaterequireddialog.ui:62
-msgctxt "updaterequireddialog|progresslabel"
-msgid "Adding %EXTENSION_NAME"
-msgstr "Adding %EXTENSION_NAME"
-
-#: updaterequireddialog.ui:106
-#, fuzzy
-msgctxt "updaterequireddialog|check"
-msgid "Check for _Updates..."
-msgstr "Check for Updates"
-
-#: updaterequireddialog.ui:122
-msgctxt "updaterequireddialog|disable"
-msgid "Disable all"
-msgstr ""
-
#: strings.hrc:25
msgctxt "RID_STR_COPYING_PACKAGE"
msgid "Copying: "
@@ -938,3 +707,234 @@ msgstr "unopkg cannot be started. The lock file indicates it as already running.
msgctxt "RID_STR_UNOPKG_ERROR"
msgid "ERROR: "
msgstr "ERROR: "
+
+#: dependenciesdialog.ui:9
+msgctxt "dependenciesdialog|Dependencies"
+msgid "System dependencies check"
+msgstr ""
+
+#: dependenciesdialog.ui:60
+msgctxt "dependenciesdialog|label1"
+msgid "The extension cannot be installed as the following system dependencies are not fulfilled:"
+msgstr ""
+
+#: extensionmanager.ui:9
+msgctxt "extensionmanager|ExtensionManagerDialog"
+msgid "Extension Manager"
+msgstr "Extension Manager"
+
+#: extensionmanager.ui:82
+msgctxt "extensionmanager|optionsbtn"
+msgid "_Options"
+msgstr ""
+
+#: extensionmanager.ui:96
+msgctxt "extensionmanager|updatebtn"
+msgid "Check for _Updates"
+msgstr ""
+
+#: extensionmanager.ui:111
+msgctxt "extensionmanager|addbtn"
+msgid "_Add"
+msgstr ""
+
+#: extensionmanager.ui:128
+msgctxt "extensionmanager|removebtn"
+msgid "_Remove"
+msgstr ""
+
+#: extensionmanager.ui:143
+msgctxt "extensionmanager|enablebtn"
+msgid "_Enable"
+msgstr ""
+
+#: extensionmanager.ui:187
+msgctxt "extensionmanager|shared"
+msgid "Installed for all users"
+msgstr ""
+
+#: extensionmanager.ui:203
+msgctxt "extensionmanager|user"
+msgid "Installed for current user"
+msgstr ""
+
+#: extensionmanager.ui:219
+msgctxt "extensionmanager|bundled"
+msgid "Bundled with %PRODUCTNAME"
+msgstr ""
+
+#: extensionmanager.ui:241
+msgctxt "extensionmanager|label1"
+msgid "Display Extensions"
+msgstr ""
+
+#: extensionmanager.ui:263
+msgctxt "extensionmanager|progressft"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Adding %EXTENSION_NAME"
+
+#: extensionmanager.ui:298
+msgctxt "extensionmanager|getextensions"
+msgid "Get more extensions online..."
+msgstr "Get more extensions online..."
+
+#: installforalldialog.ui:12
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid "For whom do you want to install the extension?"
+msgstr ""
+
+#: installforalldialog.ui:13
+msgctxt "installforalldialog|InstallForAllDialog"
+msgid "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment."
+msgstr ""
+
+#: installforalldialog.ui:25
+msgctxt "installforalldialog|no"
+msgid "_For all users"
+msgstr ""
+
+#: installforalldialog.ui:39
+msgctxt "installforalldialog|yes"
+msgid "_Only for me"
+msgstr ""
+
+#: licensedialog.ui:8
+msgctxt "licensedialog|LicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr ""
+
+#: licensedialog.ui:21
+msgctxt "licensedialog|accept"
+msgid "Accept"
+msgstr ""
+
+#: licensedialog.ui:36
+msgctxt "licensedialog|decline"
+msgid "Decline"
+msgstr ""
+
+#: licensedialog.ui:67
+msgctxt "licensedialog|head"
+msgid "Please follow these steps to proceed with the installation of the extension:"
+msgstr ""
+
+#: licensedialog.ui:90
+msgctxt "licensedialog|label2"
+msgid "1."
+msgstr ""
+
+#: licensedialog.ui:105
+msgctxt "licensedialog|label3"
+msgid "2."
+msgstr ""
+
+#: licensedialog.ui:149
+msgctxt "licensedialog|label4"
+msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text."
+msgstr ""
+
+#: licensedialog.ui:167
+msgctxt "licensedialog|label5"
+msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
+msgstr ""
+
+#: licensedialog.ui:180
+msgctxt "licensedialog|down"
+msgid "_Scroll Down"
+msgstr ""
+
+#: showlicensedialog.ui:7
+msgctxt "showlicensedialog|ShowLicenseDialog"
+msgid "Extension Software License Agreement"
+msgstr ""
+
+#: updatedialog.ui:10
+msgctxt "updatedialog|UpdateDialog"
+msgid "Extension Update"
+msgstr ""
+
+#: updatedialog.ui:38
+msgctxt "updatedialog|INSTALL"
+msgid "_Install"
+msgstr ""
+
+#: updatedialog.ui:104
+msgctxt "updatedialog|UPDATE_LABEL"
+msgid "_Available extension updates"
+msgstr ""
+
+#: updatedialog.ui:117
+msgctxt "updatedialog|UPDATE_CHECKING"
+msgid "Checking..."
+msgstr ""
+
+#: updatedialog.ui:160
+msgctxt "updatedialog|UPDATE_ALL"
+msgid "_Show all updates"
+msgstr ""
+
+#: updatedialog.ui:196
+msgctxt "updatedialog|DESCRIPTION_LABEL"
+msgid "Description"
+msgstr ""
+
+#: updatedialog.ui:214
+msgctxt "updatedialog|PUBLISHER_LABEL"
+msgid "Publisher:"
+msgstr ""
+
+#: updatedialog.ui:225
+msgctxt "updatedialog|PUBLISHER_LINK"
+msgid "button"
+msgstr ""
+
+#: updatedialog.ui:242
+msgctxt "updatedialog|RELEASE_NOTES_LABEL"
+msgid "What is new:"
+msgstr ""
+
+#: updatedialog.ui:253
+msgctxt "updatedialog|RELEASE_NOTES_LINK"
+msgid "Release notes"
+msgstr ""
+
+#: updateinstalldialog.ui:8
+msgctxt "updateinstalldialog|UpdateInstallDialog"
+msgid "Download and Installation"
+msgstr ""
+
+#: updateinstalldialog.ui:87
+msgctxt "updateinstalldialog|DOWNLOADING"
+msgid "Downloading extensions..."
+msgstr ""
+
+#: updateinstalldialog.ui:125
+msgctxt "updateinstalldialog|RESULTS"
+msgid "Result"
+msgstr ""
+
+#: updaterequireddialog.ui:9
+msgctxt "updaterequireddialog|UpdateRequiredDialog"
+msgid "Extension Update Required"
+msgstr ""
+
+#: updaterequireddialog.ui:26
+msgctxt "updaterequireddialog|updatelabel"
+msgid "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used."
+msgstr ""
+
+#: updaterequireddialog.ui:62
+msgctxt "updaterequireddialog|progresslabel"
+msgid "Adding %EXTENSION_NAME"
+msgstr "Adding %EXTENSION_NAME"
+
+#: updaterequireddialog.ui:106
+#, fuzzy
+msgctxt "updaterequireddialog|check"
+msgid "Check for _Updates..."
+msgstr "Check for Updates"
+
+#: updaterequireddialog.ui:122
+msgctxt "updaterequireddialog|disable"
+msgid "Disable all"
+msgstr ""
diff --git a/source/en-ZA/dictionaries/sq_AL.po b/source/en-ZA/dictionaries/sq_AL.po
new file mode 100644
index 00000000000..c8365445aba
--- /dev/null
+++ b/source/en-ZA/dictionaries/sq_AL.po
@@ -0,0 +1,22 @@
+#. extracted from dictionaries/sq_AL
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
+msgid "Albanian spelling dictionary"
+msgstr ""
diff --git a/source/en-ZA/extensions/messages.po b/source/en-ZA/extensions/messages.po
index 93a78ca0642..aa9642589a9 100644
--- a/source/en-ZA/extensions/messages.po
+++ b/source/en-ZA/extensions/messages.po
@@ -1,9 +1,9 @@
-#. extracted from extensions/uiconfig/sbibliography/ui
+#. extracted from extensions/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,944 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: choosedatasourcedialog.ui:8
-msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
-msgid "Choose Data Source"
-msgstr ""
-
-#: choosedatasourcedialog.ui:90
-msgctxt "choosedatasourcedialog|label1"
-msgid "Entry"
-msgstr ""
-
-#: generalpage.ui:36
-msgctxt "generalpage|shortname"
-msgid "_Short name"
-msgstr ""
-
-#: generalpage.ui:52
-msgctxt "generalpage|authtype"
-msgid "_Type"
-msgstr ""
-
-#: generalpage.ui:67
-msgctxt "generalpage|authors"
-msgid "Author(s)"
-msgstr ""
-
-#: generalpage.ui:82
-msgctxt "generalpage|publisher"
-msgid "_Publisher"
-msgstr ""
-
-#: generalpage.ui:97
-msgctxt "generalpage|chapter"
-msgid "_Chapter"
-msgstr ""
-
-#: generalpage.ui:113
-msgctxt "generalpage|title"
-msgid "Tit_le"
-msgstr ""
-
-#: generalpage.ui:129
-msgctxt "generalpage|address"
-msgid "A_ddress"
-msgstr ""
-
-#: generalpage.ui:145
-msgctxt "generalpage|pages"
-msgid "Pa_ge(s)"
-msgstr ""
-
-#: generalpage.ui:161
-msgctxt "generalpage|year"
-msgid "_Year"
-msgstr ""
-
-#: generalpage.ui:177
-msgctxt "generalpage|isbn"
-msgid "_ISBN"
-msgstr ""
-
-#: generalpage.ui:210
-msgctxt "generalpage|editor"
-msgid "Editor"
-msgstr ""
-
-#: generalpage.ui:225
-msgctxt "generalpage|booktitle"
-msgid "_Book title"
-msgstr ""
-
-#: generalpage.ui:241
-msgctxt "generalpage|edition"
-msgid "Ed_ition"
-msgstr ""
-
-#: generalpage.ui:257
-msgctxt "generalpage|volume"
-msgid "Volume"
-msgstr ""
-
-#: generalpage.ui:273
-msgctxt "generalpage|institution"
-msgid "Instit_ution"
-msgstr ""
-
-#: generalpage.ui:289
-msgctxt "generalpage|month"
-msgid "_Month"
-msgstr ""
-
-#: generalpage.ui:305
-msgctxt "generalpage|publicationtype"
-msgid "Publication t_ype"
-msgstr ""
-
-#: generalpage.ui:321
-msgctxt "generalpage|university"
-msgid "University"
-msgstr ""
-
-#: generalpage.ui:336
-msgctxt "generalpage|reporttype"
-msgid "Type of re_port"
-msgstr ""
-
-#: generalpage.ui:351
-msgctxt "generalpage|organization"
-msgid "Organi_zation"
-msgstr ""
-
-#: generalpage.ui:384
-msgctxt "generalpage|journal"
-msgid "_Journal"
-msgstr ""
-
-#: generalpage.ui:399
-msgctxt "generalpage|annotation"
-msgid "Ann_otation"
-msgstr ""
-
-#: generalpage.ui:415
-msgctxt "generalpage|number"
-msgid "Numb_er"
-msgstr ""
-
-#: generalpage.ui:431
-msgctxt "generalpage|note"
-msgid "_Note"
-msgstr ""
-
-#: generalpage.ui:447
-msgctxt "generalpage|series"
-msgid "Se_ries"
-msgstr ""
-
-#: generalpage.ui:463
-msgctxt "generalpage|url"
-msgid "URL"
-msgstr ""
-
-#: generalpage.ui:496
-msgctxt "generalpage|custom1"
-msgid "User-defined field _1"
-msgstr ""
-
-#: generalpage.ui:511
-msgctxt "generalpage|custom4"
-msgid "User-defined field _4"
-msgstr ""
-
-#: generalpage.ui:527
-msgctxt "generalpage|custom2"
-msgid "User-defined field _2"
-msgstr ""
-
-#: generalpage.ui:543
-msgctxt "generalpage|custom5"
-msgid "User-defined field _5"
-msgstr ""
-
-#: generalpage.ui:559
-msgctxt "generalpage|custom3"
-msgid "User-defined field _3"
-msgstr ""
-
-#: mappingdialog.ui:8
-msgctxt "mappingdialog|MappingDialog"
-msgid "Column Layout for Table “%1”"
-msgstr ""
-
-#: mappingdialog.ui:107
-msgctxt "mappingdialog|label2"
-msgid "_Short name"
-msgstr ""
-
-#: mappingdialog.ui:122
-msgctxt "mappingdialog|label3"
-msgid "_Author(s)"
-msgstr ""
-
-#: mappingdialog.ui:137
-msgctxt "mappingdialog|label4"
-msgid "_Publisher"
-msgstr ""
-
-#: mappingdialog.ui:152
-msgctxt "mappingdialog|label5"
-msgid "_Chapter"
-msgstr ""
-
-#: mappingdialog.ui:167
-msgctxt "mappingdialog|label6"
-msgid "Editor"
-msgstr ""
-
-#: mappingdialog.ui:228
-msgctxt "mappingdialog|label7"
-msgid "_Type"
-msgstr ""
-
-#: mappingdialog.ui:243
-msgctxt "mappingdialog|label8"
-msgid "_Year"
-msgstr ""
-
-#: mappingdialog.ui:258
-msgctxt "mappingdialog|label9"
-msgid "Tit_le"
-msgstr ""
-
-#: mappingdialog.ui:309
-msgctxt "mappingdialog|label10"
-msgid "A_ddress"
-msgstr ""
-
-#: mappingdialog.ui:324
-msgctxt "mappingdialog|label11"
-msgid "_ISBN"
-msgstr ""
-
-#: mappingdialog.ui:339
-msgctxt "mappingdialog|label12"
-msgid "Pa_ge(s)"
-msgstr ""
-
-#: mappingdialog.ui:390
-msgctxt "mappingdialog|label13"
-msgid "Ed_ition"
-msgstr ""
-
-#: mappingdialog.ui:417
-msgctxt "mappingdialog|label14"
-msgid "_Book title"
-msgstr ""
-
-#: mappingdialog.ui:432
-msgctxt "mappingdialog|label15"
-msgid "Volume"
-msgstr ""
-
-#: mappingdialog.ui:445
-msgctxt "mappingdialog|label16"
-msgid "Publication t_ype"
-msgstr ""
-
-#: mappingdialog.ui:496
-msgctxt "mappingdialog|label17"
-msgid "Organi_zation"
-msgstr ""
-
-#: mappingdialog.ui:511
-msgctxt "mappingdialog|label18"
-msgid "Instit_ution"
-msgstr ""
-
-#: mappingdialog.ui:526
-msgctxt "mappingdialog|label19"
-msgid "Uni_versity"
-msgstr ""
-
-#: mappingdialog.ui:577
-msgctxt "mappingdialog|label20"
-msgid "Type of re_port"
-msgstr ""
-
-#: mappingdialog.ui:592
-msgctxt "mappingdialog|label21"
-msgid "_Month"
-msgstr ""
-
-#: mappingdialog.ui:631
-msgctxt "mappingdialog|label22"
-msgid "_Journal"
-msgstr ""
-
-#: mappingdialog.ui:646
-msgctxt "mappingdialog|label23"
-msgid "Numb_er"
-msgstr ""
-
-#: mappingdialog.ui:661
-msgctxt "mappingdialog|label24"
-msgid "Se_ries"
-msgstr ""
-
-#: mappingdialog.ui:712
-msgctxt "mappingdialog|label25"
-msgid "Ann_otation"
-msgstr ""
-
-#: mappingdialog.ui:727
-msgctxt "mappingdialog|label26"
-msgid "_Note"
-msgstr ""
-
-#: mappingdialog.ui:742
-msgctxt "mappingdialog|label27"
-msgid "URL"
-msgstr ""
-
-#: mappingdialog.ui:791
-msgctxt "mappingdialog|label28"
-msgid "User-defined field _1"
-msgstr ""
-
-#: mappingdialog.ui:806
-msgctxt "mappingdialog|label29"
-msgid "User-defined field _2"
-msgstr ""
-
-#: mappingdialog.ui:821
-msgctxt "mappingdialog|label30"
-msgid "User-defined field _3"
-msgstr ""
-
-#: mappingdialog.ui:836
-msgctxt "mappingdialog|label31"
-msgid "User-defined field _4"
-msgstr ""
-
-#: mappingdialog.ui:851
-msgctxt "mappingdialog|label32"
-msgid "User-defined field _5"
-msgstr ""
-
-#: mappingdialog.ui:970
-msgctxt "mappingdialog|label1"
-msgid "Column Names"
-msgstr ""
-
-#: toolbar.ui:14
-msgctxt "toolbar|TBC_FT_SOURCE"
-msgid "Table"
-msgstr ""
-
-#: toolbar.ui:49
-msgctxt "toolbar|TBC_FT_QUERY"
-msgid "Search Key"
-msgstr ""
-
-#: toolbar.ui:84
-msgctxt "toolbar|TBC_BT_AUTOFILTER"
-msgid "AutoFilter"
-msgstr ""
-
-#: toolbar.ui:97
-msgctxt "toolbar|TBC_BT_FILTERCRIT"
-msgid "Standard Filter"
-msgstr ""
-
-#: toolbar.ui:110
-msgctxt "toolbar|TBC_BT_REMOVEFILTER"
-msgid "Reset Filter"
-msgstr ""
-
-#: toolbar.ui:123
-msgctxt "toolbar|TBC_BT_COL_ASSIGN"
-msgid "Column Arrangement"
-msgstr ""
-
-#: toolbar.ui:136
-msgctxt "toolbar|TBC_BT_CHANGESOURCE"
-msgid "Data Source"
-msgstr ""
-
-#: controlfontdialog.ui:8
-msgctxt "controlfontdialog|ControlFontDialog"
-msgid "Character"
-msgstr ""
-
-#: controlfontdialog.ui:99
-msgctxt "controlfontdialog|font"
-msgid "Font"
-msgstr ""
-
-#: controlfontdialog.ui:112
-msgctxt "controlfontdialog|fonteffects"
-msgid "Font Effects"
-msgstr ""
-
-#: datatypedialog.ui:8
-msgctxt "datatypedialog|DataTypeDialog"
-msgid "New Data Type"
-msgstr ""
-
-#: datatypedialog.ui:85
-msgctxt "datatypedialog|label"
-msgid "Type a name for the new data type:"
-msgstr ""
-
-#: formlinksdialog.ui:9
-msgctxt "formlinksdialog|FormLinks"
-msgid "Link fields"
-msgstr ""
-
-#: formlinksdialog.ui:72
-msgctxt "formlinksdialog|suggestButton"
-msgid "Suggest"
-msgstr ""
-
-#: formlinksdialog.ui:105
-msgctxt "formlinksdialog|explanationLabel"
-msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
-msgstr ""
-
-#: formlinksdialog.ui:125
-msgctxt "formlinksdialog|detailLabel"
-msgid "label"
-msgstr ""
-
-#: formlinksdialog.ui:137
-msgctxt "formlinksdialog|masterLabel"
-msgid "label"
-msgstr ""
-
-#: labelselectiondialog.ui:9
-msgctxt "labelselectiondialog|LabelSelectionDialog"
-msgid "Label Field Selection"
-msgstr ""
-
-#: labelselectiondialog.ui:88
-msgctxt "labelselectiondialog|label"
-msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
-msgstr ""
-
-#: labelselectiondialog.ui:122
-msgctxt "labelselectiondialog|noassignment"
-msgid "_No assignment"
-msgstr ""
-
-#: taborder.ui:8
-msgctxt "taborder|TabOrderDialog"
-msgid "Tab Order"
-msgstr ""
-
-#: taborder.ui:21
-msgctxt "taborder|upB"
-msgid "_Move Up"
-msgstr ""
-
-#: taborder.ui:35
-msgctxt "taborder|downB"
-msgid "Move _Down"
-msgstr ""
-
-#: taborder.ui:49
-msgctxt "taborder|autoB"
-msgid "_Automatic Sort"
-msgstr ""
-
-#: taborder.ui:146
-msgctxt "taborder|label2"
-msgid "Controls"
-msgstr ""
-
-#: contentfieldpage.ui:34
-msgctxt "contentfieldpage|label1"
-msgid "Existing fields"
-msgstr ""
-
-#: contentfieldpage.ui:81
-msgctxt "contentfieldpage|label3"
-msgid "Display field"
-msgstr ""
-
-#: contenttablepage.ui:43
-msgctxt "contenttablepage|datasourcelabel"
-msgid "Data source"
-msgstr ""
-
-#: contenttablepage.ui:57
-msgctxt "contenttablepage|contenttypelabel"
-msgid "Content type"
-msgstr ""
-
-#: contenttablepage.ui:71
-msgctxt "contenttablepage|formtablelabel"
-msgid "Content"
-msgstr ""
-
-#: contenttablepage.ui:148
-msgctxt "contenttablepage|formsettings"
-msgid "Form"
-msgstr ""
-
-#: contenttablepage.ui:194
-msgctxt "contenttablepage|label3"
-msgid ""
-"On the right side, you see all the tables from the data source of the form.\n"
-"\n"
-"\n"
-"Choose the table from which the data should be used as basis for the list content:"
-msgstr ""
-
-#: contenttablepage.ui:233
-msgctxt "contenttablepage|label2"
-msgid "Control"
-msgstr ""
-
-#: datasourcepage.ui:17
-msgctxt "datasourcepage|label2"
-msgid ""
-"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
-"\n"
-"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
-msgstr ""
-
-#: datasourcepage.ui:38
-msgctxt "datasourcepage|embed"
-msgid "Embed this address book definition into the current document."
-msgstr ""
-
-#: datasourcepage.ui:61
-msgctxt "datasourcepage|locationft"
-msgid "Location"
-msgstr ""
-
-#: datasourcepage.ui:74
-msgctxt "datasourcepage|browse"
-msgid "Browse..."
-msgstr ""
-
-#: datasourcepage.ui:116
-msgctxt "datasourcepage|available"
-msgid "Make this address book available to all modules in %PRODUCTNAME."
-msgstr ""
-
-#: datasourcepage.ui:153
-msgctxt "datasourcepage|nameft"
-msgid "Address book name"
-msgstr ""
-
-#: datasourcepage.ui:191
-msgctxt "datasourcepage|warning"
-msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
-msgstr ""
-
-#: defaultfieldselectionpage.ui:18
-msgctxt "defaultfieldselectionpage|label1"
-msgid "Should one option field be selected as a default?"
-msgstr ""
-
-#: defaultfieldselectionpage.ui:34
-msgctxt "defaultfieldselectionpage|defaultselectionyes"
-msgid "_Yes, the following:"
-msgstr ""
-
-#: defaultfieldselectionpage.ui:76
-msgctxt "defaultfieldselectionpage|defaultselectionno"
-msgid "No, one particular field is not going to be selected."
-msgstr ""
-
-#: fieldassignpage.ui:16
-msgctxt "fieldassignpage|label2"
-msgid ""
-"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
-"\n"
-"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
-"\n"
-"Click the button below to open another dialog where you can enter the settings for your data source."
-msgstr ""
-
-#: fieldassignpage.ui:33
-msgctxt "fieldassignpage|assign"
-msgid "Field Assignment"
-msgstr ""
-
-#: fieldlinkpage.ui:19
-msgctxt "fieldlinkpage|desc"
-msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
-msgstr ""
-
-#: fieldlinkpage.ui:49
-msgctxt "fieldlinkpage|label2"
-msgid "Field from the _Value Table"
-msgstr ""
-
-#: fieldlinkpage.ui:97
-msgctxt "fieldlinkpage|label3"
-msgid "Field from the _List Table"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:44
-msgctxt "gridfieldsselectionpage|datasourcelabel"
-msgid "Data source"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:58
-msgctxt "gridfieldsselectionpage|contenttypelabel"
-msgid "Content type"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:72
-msgctxt "gridfieldsselectionpage|formtablelabel"
-msgid "Content"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:148
-msgctxt "gridfieldsselectionpage|formsettings"
-msgid "Form"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:205
-msgctxt "gridfieldsselectionpage|label3"
-msgid "Selected fields"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:231
-msgctxt "gridfieldsselectionpage|fieldright"
-msgid "->"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:245
-msgctxt "gridfieldsselectionpage|allfieldsright"
-msgid "=>>"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:273
-msgctxt "gridfieldsselectionpage|fieldleft"
-msgid "<-"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:287
-msgctxt "gridfieldsselectionpage|allfieldsleft"
-msgid "<<="
-msgstr ""
-
-#: gridfieldsselectionpage.ui:336
-msgctxt "gridfieldsselectionpage|label1"
-msgid "Existing fields"
-msgstr ""
-
-#: gridfieldsselectionpage.ui:358
-msgctxt "gridfieldsselectionpage|label2"
-msgid "Table element"
-msgstr ""
-
-#: groupradioselectionpage.ui:44
-msgctxt "groupradioselectionpage|datasourcelabel"
-msgid "Data source"
-msgstr ""
-
-#: groupradioselectionpage.ui:58
-msgctxt "groupradioselectionpage|contenttypelabel"
-msgid "Content type"
-msgstr ""
-
-#: groupradioselectionpage.ui:72
-msgctxt "groupradioselectionpage|formtablelabel"
-msgid "Content"
-msgstr ""
-
-#: groupradioselectionpage.ui:149
-msgctxt "groupradioselectionpage|formsettings"
-msgid "Form"
-msgstr ""
-
-#: groupradioselectionpage.ui:210
-msgctxt "groupradioselectionpage|label3"
-msgid "_Option fields"
-msgstr ""
-
-#: groupradioselectionpage.ui:230
-msgctxt "groupradioselectionpage|toright"
-msgid "_>>"
-msgstr ""
-
-#: groupradioselectionpage.ui:245
-msgctxt "groupradioselectionpage|toleft"
-msgid "_<<"
-msgstr ""
-
-#: groupradioselectionpage.ui:287
-msgctxt "groupradioselectionpage|label1"
-msgid "Which _names do you want to give the option fields?"
-msgstr ""
-
-#: groupradioselectionpage.ui:310
-msgctxt "groupradioselectionpage|label2"
-msgid "Table element"
-msgstr ""
-
-#: invokeadminpage.ui:16
-msgctxt "invokeadminpage|label2"
-msgid ""
-"To set up the new data source, additional information is required.\n"
-"\n"
-"Click the following button to open another dialog in which you then enter the necessary information."
-msgstr ""
-
-#: invokeadminpage.ui:31
-msgctxt "invokeadminpage|settings"
-msgid "Settings"
-msgstr ""
-
-#: invokeadminpage.ui:50
-msgctxt "invokeadminpage|warning"
-msgid ""
-"The connection to the data source could not be established.\n"
-"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
-msgstr ""
-
-#: optiondbfieldpage.ui:35
-msgctxt "optiondbfieldpage|label1"
-msgid "Do you want to save the value in a database field?"
-msgstr ""
-
-#: optiondbfieldpage.ui:53
-msgctxt "optiondbfieldpage|yesRadiobutton"
-msgid "_Yes, I want to save it in the following database field:"
-msgstr ""
-
-#: optiondbfieldpage.ui:73
-msgctxt "optiondbfieldpage|noRadiobutton"
-msgid "_No, I only want to save the value in the form."
-msgstr ""
-
-#: optionsfinalpage.ui:18
-msgctxt "optionsfinalpage|label1"
-msgid "Which _caption is to be given to your option group?"
-msgstr ""
-
-#: optionsfinalpage.ui:48
-msgctxt "optionsfinalpage|label2"
-msgid "These were all details needed to create the option group."
-msgstr ""
-
-#: optionvaluespage.ui:28
-msgctxt "optionvaluespage|label1"
-msgid "When you select an option, the option group is given a specific value."
-msgstr ""
-
-#: optionvaluespage.ui:45
-msgctxt "optionvaluespage|label2"
-msgid "Which _value do you want to assign to each option?"
-msgstr ""
-
-#: optionvaluespage.ui:90
-msgctxt "optionvaluespage|label3"
-msgid "_Option fields"
-msgstr ""
-
-#: selecttablepage.ui:16
-msgctxt "selecttablepage|label2"
-msgid ""
-"The external data source you have chosen contains more than one address book.\n"
-"Please select the one you mainly want to work with:"
-msgstr ""
-
-#: selecttypepage.ui:31
-msgctxt "selecttypepage|evolution"
-msgid "Evolution"
-msgstr ""
-
-#: selecttypepage.ui:49
-msgctxt "selecttypepage|groupwise"
-msgid "Groupwise"
-msgstr ""
-
-#: selecttypepage.ui:66
-msgctxt "selecttypepage|evoldap"
-msgid "Evolution LDAP"
-msgstr ""
-
-#: selecttypepage.ui:83
-msgctxt "selecttypepage|firefox"
-msgid "Firefox/Iceweasel"
-msgstr ""
-
-#: selecttypepage.ui:100
-msgctxt "selecttypepage|thunderbird"
-msgid "Thunderbird/Icedove"
-msgstr ""
-
-#: selecttypepage.ui:117
-msgctxt "selecttypepage|kde"
-msgid "KDE address book"
-msgstr ""
-
-#: selecttypepage.ui:134
-msgctxt "selecttypepage|macosx"
-msgid "Mac OS X address book"
-msgstr ""
-
-#: selecttypepage.ui:151
-msgctxt "selecttypepage|other"
-msgid "Other external data source"
-msgstr ""
-
-#: selecttypepage.ui:174
-msgctxt "selecttypepage|label1"
-msgid "Please Select the Type of Your External Address Book"
-msgstr ""
-
-#: selecttypepage.ui:194
-msgctxt "selecttypepage|label2"
-msgid ""
-"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
-"\n"
-"This wizard helps you create the data source."
-msgstr ""
-
-#: tableselectionpage.ui:42
-msgctxt "tableselectionpage|label3"
-msgid ""
-"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
-"\n"
-"Please choose a data source and a table.\n"
-"\n"
-"\n"
-"Please note that the settings made on this page will take effect immediately upon leaving the page."
-msgstr ""
-
-#: tableselectionpage.ui:72
-msgctxt "tableselectionpage|datasourcelabel"
-msgid "_Data source:"
-msgstr ""
-
-#: tableselectionpage.ui:100
-msgctxt "tableselectionpage|search"
-msgid "_..."
-msgstr ""
-
-#: tableselectionpage.ui:133
-msgctxt "tableselectionpage|tablelabel"
-msgid "_Table / Query:"
-msgstr ""
-
-#: tableselectionpage.ui:174
-msgctxt "tableselectionpage|label1"
-msgid "Data"
-msgstr ""
-
-#: griddialog.ui:56
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Linear ascending"
-msgstr ""
-
-#: griddialog.ui:57
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Linear descending"
-msgstr ""
-
-#: griddialog.ui:58
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Original values"
-msgstr ""
-
-#: griddialog.ui:59
-msgctxt "griddialog|resetTypeCombobox"
-msgid "Exponential increasing"
-msgstr ""
-
-#: griddialog.ui:70
-msgctxt "griddialog|resetButton"
-msgid "_Set"
-msgstr ""
-
-#: sanedialog.ui:9
-msgctxt "sanedialog|SaneDialog"
-msgid "Scanner"
-msgstr ""
-
-#: sanedialog.ui:46
-msgctxt "sanedialog|label3"
-msgid "_Left:"
-msgstr ""
-
-#: sanedialog.ui:62
-msgctxt "sanedialog|label4"
-msgid "To_p:"
-msgstr ""
-
-#: sanedialog.ui:78
-msgctxt "sanedialog|label5"
-msgid "_Right:"
-msgstr ""
-
-#: sanedialog.ui:94
-msgctxt "sanedialog|label6"
-msgid "_Bottom:"
-msgstr ""
-
-#: sanedialog.ui:166
-msgctxt "sanedialog|label1"
-msgid "Scan area"
-msgstr ""
-
-#: sanedialog.ui:208
-msgctxt "sanedialog|label2"
-msgid "Preview"
-msgstr ""
-
-#: sanedialog.ui:242
-msgctxt "sanedialog|label7"
-msgid "Device _used"
-msgstr ""
-
-#: sanedialog.ui:258
-msgctxt "sanedialog|label8"
-msgid "Resolution [_DPI]"
-msgstr ""
-
-#: sanedialog.ui:312
-msgctxt "sanedialog|advancedCheckbutton"
-msgid "Show advanced options"
-msgstr ""
-
-#: sanedialog.ui:344
-msgctxt "sanedialog|label10"
-msgid "Options:"
-msgstr ""
-
-#: sanedialog.ui:416
-msgctxt "sanedialog|optionsButton"
-msgid "Se_t"
-msgstr ""
-
-#: sanedialog.ui:500
-msgctxt "sanedialog|vectorLabel"
-msgid "Vector element"
-msgstr ""
-
-#: sanedialog.ui:629
-msgctxt "sanedialog|deviceInfoButton"
-msgid "About Dev_ice"
-msgstr ""
-
-#: sanedialog.ui:644
-msgctxt "sanedialog|previewButton"
-msgid "Create Previe_w"
-msgstr ""
-
-#: sanedialog.ui:659
-msgctxt "sanedialog|scanButton"
-msgid "_Scan"
-msgstr ""
-
#: command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
msgid "Table"
@@ -3407,3 +2469,941 @@ msgstr ""
msgctxt "RID_RSC_ENUM_YESNO"
msgid "Yes"
msgstr ""
+
+#: contentfieldpage.ui:34
+msgctxt "contentfieldpage|label1"
+msgid "Existing fields"
+msgstr ""
+
+#: contentfieldpage.ui:81
+msgctxt "contentfieldpage|label3"
+msgid "Display field"
+msgstr ""
+
+#: contenttablepage.ui:43
+msgctxt "contenttablepage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: contenttablepage.ui:57
+msgctxt "contenttablepage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: contenttablepage.ui:71
+msgctxt "contenttablepage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: contenttablepage.ui:148
+msgctxt "contenttablepage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: contenttablepage.ui:194
+msgctxt "contenttablepage|label3"
+msgid ""
+"On the right side, you see all the tables from the data source of the form.\n"
+"\n"
+"\n"
+"Choose the table from which the data should be used as basis for the list content:"
+msgstr ""
+
+#: contenttablepage.ui:233
+msgctxt "contenttablepage|label2"
+msgid "Control"
+msgstr ""
+
+#: datasourcepage.ui:17
+msgctxt "datasourcepage|label2"
+msgid ""
+"That was all the information necessary to integrate your address data into %PRODUCTNAME.\n"
+"\n"
+"Now, just enter the name under which you want to register the data source in %PRODUCTNAME."
+msgstr ""
+
+#: datasourcepage.ui:38
+msgctxt "datasourcepage|embed"
+msgid "Embed this address book definition into the current document."
+msgstr ""
+
+#: datasourcepage.ui:61
+msgctxt "datasourcepage|locationft"
+msgid "Location"
+msgstr ""
+
+#: datasourcepage.ui:74
+msgctxt "datasourcepage|browse"
+msgid "Browse..."
+msgstr ""
+
+#: datasourcepage.ui:116
+msgctxt "datasourcepage|available"
+msgid "Make this address book available to all modules in %PRODUCTNAME."
+msgstr ""
+
+#: datasourcepage.ui:153
+msgctxt "datasourcepage|nameft"
+msgid "Address book name"
+msgstr ""
+
+#: datasourcepage.ui:191
+msgctxt "datasourcepage|warning"
+msgid "Another data source already has this name. As data sources have to have globally unique names, you need to choose another one."
+msgstr ""
+
+#: defaultfieldselectionpage.ui:18
+msgctxt "defaultfieldselectionpage|label1"
+msgid "Should one option field be selected as a default?"
+msgstr ""
+
+#: defaultfieldselectionpage.ui:34
+msgctxt "defaultfieldselectionpage|defaultselectionyes"
+msgid "_Yes, the following:"
+msgstr ""
+
+#: defaultfieldselectionpage.ui:76
+msgctxt "defaultfieldselectionpage|defaultselectionno"
+msgid "No, one particular field is not going to be selected."
+msgstr ""
+
+#: fieldassignpage.ui:16
+msgctxt "fieldassignpage|label2"
+msgid ""
+"To incorporate the address data in your templates, %PRODUCTNAME has to know which fields contain which data.\n"
+"\n"
+"For instance, you could have stored the e-mail addresses in a field named \"email\", or \"E-mail\" or \"EM\" - or something completely different.\n"
+"\n"
+"Click the button below to open another dialog where you can enter the settings for your data source."
+msgstr ""
+
+#: fieldassignpage.ui:33
+msgctxt "fieldassignpage|assign"
+msgid "Field Assignment"
+msgstr ""
+
+#: fieldlinkpage.ui:19
+msgctxt "fieldlinkpage|desc"
+msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
+msgstr ""
+
+#: fieldlinkpage.ui:49
+msgctxt "fieldlinkpage|label2"
+msgid "Field from the _Value Table"
+msgstr ""
+
+#: fieldlinkpage.ui:97
+msgctxt "fieldlinkpage|label3"
+msgid "Field from the _List Table"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:44
+msgctxt "gridfieldsselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:58
+msgctxt "gridfieldsselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:72
+msgctxt "gridfieldsselectionpage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:148
+msgctxt "gridfieldsselectionpage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:205
+msgctxt "gridfieldsselectionpage|label3"
+msgid "Selected fields"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:231
+msgctxt "gridfieldsselectionpage|fieldright"
+msgid "->"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:245
+msgctxt "gridfieldsselectionpage|allfieldsright"
+msgid "=>>"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:273
+msgctxt "gridfieldsselectionpage|fieldleft"
+msgid "<-"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:287
+msgctxt "gridfieldsselectionpage|allfieldsleft"
+msgid "<<="
+msgstr ""
+
+#: gridfieldsselectionpage.ui:336
+msgctxt "gridfieldsselectionpage|label1"
+msgid "Existing fields"
+msgstr ""
+
+#: gridfieldsselectionpage.ui:358
+msgctxt "gridfieldsselectionpage|label2"
+msgid "Table element"
+msgstr ""
+
+#: groupradioselectionpage.ui:44
+msgctxt "groupradioselectionpage|datasourcelabel"
+msgid "Data source"
+msgstr ""
+
+#: groupradioselectionpage.ui:58
+msgctxt "groupradioselectionpage|contenttypelabel"
+msgid "Content type"
+msgstr ""
+
+#: groupradioselectionpage.ui:72
+msgctxt "groupradioselectionpage|formtablelabel"
+msgid "Content"
+msgstr ""
+
+#: groupradioselectionpage.ui:149
+msgctxt "groupradioselectionpage|formsettings"
+msgid "Form"
+msgstr ""
+
+#: groupradioselectionpage.ui:210
+msgctxt "groupradioselectionpage|label3"
+msgid "_Option fields"
+msgstr ""
+
+#: groupradioselectionpage.ui:230
+msgctxt "groupradioselectionpage|toright"
+msgid "_>>"
+msgstr ""
+
+#: groupradioselectionpage.ui:245
+msgctxt "groupradioselectionpage|toleft"
+msgid "_<<"
+msgstr ""
+
+#: groupradioselectionpage.ui:287
+msgctxt "groupradioselectionpage|label1"
+msgid "Which _names do you want to give the option fields?"
+msgstr ""
+
+#: groupradioselectionpage.ui:310
+msgctxt "groupradioselectionpage|label2"
+msgid "Table element"
+msgstr ""
+
+#: invokeadminpage.ui:16
+msgctxt "invokeadminpage|label2"
+msgid ""
+"To set up the new data source, additional information is required.\n"
+"\n"
+"Click the following button to open another dialog in which you then enter the necessary information."
+msgstr ""
+
+#: invokeadminpage.ui:31
+msgctxt "invokeadminpage|settings"
+msgid "Settings"
+msgstr ""
+
+#: invokeadminpage.ui:50
+msgctxt "invokeadminpage|warning"
+msgid ""
+"The connection to the data source could not be established.\n"
+"Before you proceed, please check the settings made, or (on the previous page) choose another address data source type."
+msgstr ""
+
+#: optiondbfieldpage.ui:35
+msgctxt "optiondbfieldpage|label1"
+msgid "Do you want to save the value in a database field?"
+msgstr ""
+
+#: optiondbfieldpage.ui:53
+msgctxt "optiondbfieldpage|yesRadiobutton"
+msgid "_Yes, I want to save it in the following database field:"
+msgstr ""
+
+#: optiondbfieldpage.ui:73
+msgctxt "optiondbfieldpage|noRadiobutton"
+msgid "_No, I only want to save the value in the form."
+msgstr ""
+
+#: optionsfinalpage.ui:18
+msgctxt "optionsfinalpage|label1"
+msgid "Which _caption is to be given to your option group?"
+msgstr ""
+
+#: optionsfinalpage.ui:48
+msgctxt "optionsfinalpage|label2"
+msgid "These were all details needed to create the option group."
+msgstr ""
+
+#: optionvaluespage.ui:28
+msgctxt "optionvaluespage|label1"
+msgid "When you select an option, the option group is given a specific value."
+msgstr ""
+
+#: optionvaluespage.ui:45
+msgctxt "optionvaluespage|label2"
+msgid "Which _value do you want to assign to each option?"
+msgstr ""
+
+#: optionvaluespage.ui:90
+msgctxt "optionvaluespage|label3"
+msgid "_Option fields"
+msgstr ""
+
+#: selecttablepage.ui:16
+msgctxt "selecttablepage|label2"
+msgid ""
+"The external data source you have chosen contains more than one address book.\n"
+"Please select the one you mainly want to work with:"
+msgstr ""
+
+#: selecttypepage.ui:31
+msgctxt "selecttypepage|evolution"
+msgid "Evolution"
+msgstr ""
+
+#: selecttypepage.ui:49
+msgctxt "selecttypepage|groupwise"
+msgid "Groupwise"
+msgstr ""
+
+#: selecttypepage.ui:66
+msgctxt "selecttypepage|evoldap"
+msgid "Evolution LDAP"
+msgstr ""
+
+#: selecttypepage.ui:83
+msgctxt "selecttypepage|firefox"
+msgid "Firefox/Iceweasel"
+msgstr ""
+
+#: selecttypepage.ui:100
+msgctxt "selecttypepage|thunderbird"
+msgid "Thunderbird/Icedove"
+msgstr ""
+
+#: selecttypepage.ui:117
+msgctxt "selecttypepage|kde"
+msgid "KDE address book"
+msgstr ""
+
+#: selecttypepage.ui:134
+msgctxt "selecttypepage|macosx"
+msgid "Mac OS X address book"
+msgstr ""
+
+#: selecttypepage.ui:151
+msgctxt "selecttypepage|other"
+msgid "Other external data source"
+msgstr ""
+
+#: selecttypepage.ui:174
+msgctxt "selecttypepage|label1"
+msgid "Please Select the Type of Your External Address Book"
+msgstr ""
+
+#: selecttypepage.ui:194
+msgctxt "selecttypepage|label2"
+msgid ""
+"%PRODUCTNAME lets you access address data already present in your system. To do this, a %PRODUCTNAME data source will be created in which your address data is available in tabular form.\n"
+"\n"
+"This wizard helps you create the data source."
+msgstr ""
+
+#: tableselectionpage.ui:42
+msgctxt "tableselectionpage|label3"
+msgid ""
+"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
+"\n"
+"Please choose a data source and a table.\n"
+"\n"
+"\n"
+"Please note that the settings made on this page will take effect immediately upon leaving the page."
+msgstr ""
+
+#: tableselectionpage.ui:72
+msgctxt "tableselectionpage|datasourcelabel"
+msgid "_Data source:"
+msgstr ""
+
+#: tableselectionpage.ui:100
+msgctxt "tableselectionpage|search"
+msgid "_..."
+msgstr ""
+
+#: tableselectionpage.ui:133
+msgctxt "tableselectionpage|tablelabel"
+msgid "_Table / Query:"
+msgstr ""
+
+#: tableselectionpage.ui:174
+msgctxt "tableselectionpage|label1"
+msgid "Data"
+msgstr ""
+
+#: choosedatasourcedialog.ui:8
+msgctxt "choosedatasourcedialog|ChooseDataSourceDialog"
+msgid "Choose Data Source"
+msgstr ""
+
+#: choosedatasourcedialog.ui:90
+msgctxt "choosedatasourcedialog|label1"
+msgid "Entry"
+msgstr ""
+
+#: generalpage.ui:36
+msgctxt "generalpage|shortname"
+msgid "_Short name"
+msgstr ""
+
+#: generalpage.ui:52
+msgctxt "generalpage|authtype"
+msgid "_Type"
+msgstr ""
+
+#: generalpage.ui:67
+msgctxt "generalpage|authors"
+msgid "Author(s)"
+msgstr ""
+
+#: generalpage.ui:82
+msgctxt "generalpage|publisher"
+msgid "_Publisher"
+msgstr ""
+
+#: generalpage.ui:97
+msgctxt "generalpage|chapter"
+msgid "_Chapter"
+msgstr ""
+
+#: generalpage.ui:113
+msgctxt "generalpage|title"
+msgid "Tit_le"
+msgstr ""
+
+#: generalpage.ui:129
+msgctxt "generalpage|address"
+msgid "A_ddress"
+msgstr ""
+
+#: generalpage.ui:145
+msgctxt "generalpage|pages"
+msgid "Pa_ge(s)"
+msgstr ""
+
+#: generalpage.ui:161
+msgctxt "generalpage|year"
+msgid "_Year"
+msgstr ""
+
+#: generalpage.ui:177
+msgctxt "generalpage|isbn"
+msgid "_ISBN"
+msgstr ""
+
+#: generalpage.ui:210
+msgctxt "generalpage|editor"
+msgid "Editor"
+msgstr ""
+
+#: generalpage.ui:225
+msgctxt "generalpage|booktitle"
+msgid "_Book title"
+msgstr ""
+
+#: generalpage.ui:241
+msgctxt "generalpage|edition"
+msgid "Ed_ition"
+msgstr ""
+
+#: generalpage.ui:257
+msgctxt "generalpage|volume"
+msgid "Volume"
+msgstr ""
+
+#: generalpage.ui:273
+msgctxt "generalpage|institution"
+msgid "Instit_ution"
+msgstr ""
+
+#: generalpage.ui:289
+msgctxt "generalpage|month"
+msgid "_Month"
+msgstr ""
+
+#: generalpage.ui:305
+msgctxt "generalpage|publicationtype"
+msgid "Publication t_ype"
+msgstr ""
+
+#: generalpage.ui:321
+msgctxt "generalpage|university"
+msgid "University"
+msgstr ""
+
+#: generalpage.ui:336
+msgctxt "generalpage|reporttype"
+msgid "Type of re_port"
+msgstr ""
+
+#: generalpage.ui:351
+msgctxt "generalpage|organization"
+msgid "Organi_zation"
+msgstr ""
+
+#: generalpage.ui:384
+msgctxt "generalpage|journal"
+msgid "_Journal"
+msgstr ""
+
+#: generalpage.ui:399
+msgctxt "generalpage|annotation"
+msgid "Ann_otation"
+msgstr ""
+
+#: generalpage.ui:415
+msgctxt "generalpage|number"
+msgid "Numb_er"
+msgstr ""
+
+#: generalpage.ui:431
+msgctxt "generalpage|note"
+msgid "_Note"
+msgstr ""
+
+#: generalpage.ui:447
+msgctxt "generalpage|series"
+msgid "Se_ries"
+msgstr ""
+
+#: generalpage.ui:463
+msgctxt "generalpage|url"
+msgid "URL"
+msgstr ""
+
+#: generalpage.ui:496
+msgctxt "generalpage|custom1"
+msgid "User-defined field _1"
+msgstr ""
+
+#: generalpage.ui:511
+msgctxt "generalpage|custom4"
+msgid "User-defined field _4"
+msgstr ""
+
+#: generalpage.ui:527
+msgctxt "generalpage|custom2"
+msgid "User-defined field _2"
+msgstr ""
+
+#: generalpage.ui:543
+msgctxt "generalpage|custom5"
+msgid "User-defined field _5"
+msgstr ""
+
+#: generalpage.ui:559
+msgctxt "generalpage|custom3"
+msgid "User-defined field _3"
+msgstr ""
+
+#: mappingdialog.ui:8
+msgctxt "mappingdialog|MappingDialog"
+msgid "Column Layout for Table “%1”"
+msgstr ""
+
+#: mappingdialog.ui:107
+msgctxt "mappingdialog|label2"
+msgid "_Short name"
+msgstr ""
+
+#: mappingdialog.ui:122
+msgctxt "mappingdialog|label3"
+msgid "_Author(s)"
+msgstr ""
+
+#: mappingdialog.ui:137
+msgctxt "mappingdialog|label4"
+msgid "_Publisher"
+msgstr ""
+
+#: mappingdialog.ui:152
+msgctxt "mappingdialog|label5"
+msgid "_Chapter"
+msgstr ""
+
+#: mappingdialog.ui:167
+msgctxt "mappingdialog|label6"
+msgid "Editor"
+msgstr ""
+
+#: mappingdialog.ui:228
+msgctxt "mappingdialog|label7"
+msgid "_Type"
+msgstr ""
+
+#: mappingdialog.ui:243
+msgctxt "mappingdialog|label8"
+msgid "_Year"
+msgstr ""
+
+#: mappingdialog.ui:258
+msgctxt "mappingdialog|label9"
+msgid "Tit_le"
+msgstr ""
+
+#: mappingdialog.ui:309
+msgctxt "mappingdialog|label10"
+msgid "A_ddress"
+msgstr ""
+
+#: mappingdialog.ui:324
+msgctxt "mappingdialog|label11"
+msgid "_ISBN"
+msgstr ""
+
+#: mappingdialog.ui:339
+msgctxt "mappingdialog|label12"
+msgid "Pa_ge(s)"
+msgstr ""
+
+#: mappingdialog.ui:390
+msgctxt "mappingdialog|label13"
+msgid "Ed_ition"
+msgstr ""
+
+#: mappingdialog.ui:417
+msgctxt "mappingdialog|label14"
+msgid "_Book title"
+msgstr ""
+
+#: mappingdialog.ui:432
+msgctxt "mappingdialog|label15"
+msgid "Volume"
+msgstr ""
+
+#: mappingdialog.ui:445
+msgctxt "mappingdialog|label16"
+msgid "Publication t_ype"
+msgstr ""
+
+#: mappingdialog.ui:496
+msgctxt "mappingdialog|label17"
+msgid "Organi_zation"
+msgstr ""
+
+#: mappingdialog.ui:511
+msgctxt "mappingdialog|label18"
+msgid "Instit_ution"
+msgstr ""
+
+#: mappingdialog.ui:526
+msgctxt "mappingdialog|label19"
+msgid "Uni_versity"
+msgstr ""
+
+#: mappingdialog.ui:577
+msgctxt "mappingdialog|label20"
+msgid "Type of re_port"
+msgstr ""
+
+#: mappingdialog.ui:592
+msgctxt "mappingdialog|label21"
+msgid "_Month"
+msgstr ""
+
+#: mappingdialog.ui:631
+msgctxt "mappingdialog|label22"
+msgid "_Journal"
+msgstr ""
+
+#: mappingdialog.ui:646
+msgctxt "mappingdialog|label23"
+msgid "Numb_er"
+msgstr ""
+
+#: mappingdialog.ui:661
+msgctxt "mappingdialog|label24"
+msgid "Se_ries"
+msgstr ""
+
+#: mappingdialog.ui:712
+msgctxt "mappingdialog|label25"
+msgid "Ann_otation"
+msgstr ""
+
+#: mappingdialog.ui:727
+msgctxt "mappingdialog|label26"
+msgid "_Note"
+msgstr ""
+
+#: mappingdialog.ui:742
+msgctxt "mappingdialog|label27"
+msgid "URL"
+msgstr ""
+
+#: mappingdialog.ui:791
+msgctxt "mappingdialog|label28"
+msgid "User-defined field _1"
+msgstr ""
+
+#: mappingdialog.ui:806
+msgctxt "mappingdialog|label29"
+msgid "User-defined field _2"
+msgstr ""
+
+#: mappingdialog.ui:821
+msgctxt "mappingdialog|label30"
+msgid "User-defined field _3"
+msgstr ""
+
+#: mappingdialog.ui:836
+msgctxt "mappingdialog|label31"
+msgid "User-defined field _4"
+msgstr ""
+
+#: mappingdialog.ui:851
+msgctxt "mappingdialog|label32"
+msgid "User-defined field _5"
+msgstr ""
+
+#: mappingdialog.ui:970
+msgctxt "mappingdialog|label1"
+msgid "Column Names"
+msgstr ""
+
+#: toolbar.ui:14
+msgctxt "toolbar|TBC_FT_SOURCE"
+msgid "Table"
+msgstr ""
+
+#: toolbar.ui:49
+msgctxt "toolbar|TBC_FT_QUERY"
+msgid "Search Key"
+msgstr ""
+
+#: toolbar.ui:84
+msgctxt "toolbar|TBC_BT_AUTOFILTER"
+msgid "AutoFilter"
+msgstr ""
+
+#: toolbar.ui:97
+msgctxt "toolbar|TBC_BT_FILTERCRIT"
+msgid "Standard Filter"
+msgstr ""
+
+#: toolbar.ui:110
+msgctxt "toolbar|TBC_BT_REMOVEFILTER"
+msgid "Reset Filter"
+msgstr ""
+
+#: toolbar.ui:123
+msgctxt "toolbar|TBC_BT_COL_ASSIGN"
+msgid "Column Arrangement"
+msgstr ""
+
+#: toolbar.ui:136
+msgctxt "toolbar|TBC_BT_CHANGESOURCE"
+msgid "Data Source"
+msgstr ""
+
+#: controlfontdialog.ui:8
+msgctxt "controlfontdialog|ControlFontDialog"
+msgid "Character"
+msgstr ""
+
+#: controlfontdialog.ui:105
+msgctxt "controlfontdialog|font"
+msgid "Font"
+msgstr ""
+
+#: controlfontdialog.ui:127
+msgctxt "controlfontdialog|fonteffects"
+msgid "Font Effects"
+msgstr ""
+
+#: datatypedialog.ui:8
+msgctxt "datatypedialog|DataTypeDialog"
+msgid "New Data Type"
+msgstr ""
+
+#: datatypedialog.ui:85
+msgctxt "datatypedialog|label"
+msgid "Type a name for the new data type:"
+msgstr ""
+
+#: formlinksdialog.ui:9
+msgctxt "formlinksdialog|FormLinks"
+msgid "Link fields"
+msgstr ""
+
+#: formlinksdialog.ui:72
+msgctxt "formlinksdialog|suggestButton"
+msgid "Suggest"
+msgstr ""
+
+#: formlinksdialog.ui:105
+msgctxt "formlinksdialog|explanationLabel"
+msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
+msgstr ""
+
+#: formlinksdialog.ui:125
+msgctxt "formlinksdialog|detailLabel"
+msgid "label"
+msgstr ""
+
+#: formlinksdialog.ui:137
+msgctxt "formlinksdialog|masterLabel"
+msgid "label"
+msgstr ""
+
+#: labelselectiondialog.ui:9
+msgctxt "labelselectiondialog|LabelSelectionDialog"
+msgid "Label Field Selection"
+msgstr ""
+
+#: labelselectiondialog.ui:88
+msgctxt "labelselectiondialog|label"
+msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
+msgstr ""
+
+#: labelselectiondialog.ui:122
+msgctxt "labelselectiondialog|noassignment"
+msgid "_No assignment"
+msgstr ""
+
+#: taborder.ui:8
+msgctxt "taborder|TabOrderDialog"
+msgid "Tab Order"
+msgstr ""
+
+#: taborder.ui:21
+msgctxt "taborder|upB"
+msgid "_Move Up"
+msgstr ""
+
+#: taborder.ui:35
+msgctxt "taborder|downB"
+msgid "Move _Down"
+msgstr ""
+
+#: taborder.ui:49
+msgctxt "taborder|autoB"
+msgid "_Automatic Sort"
+msgstr ""
+
+#: taborder.ui:146
+msgctxt "taborder|label2"
+msgid "Controls"
+msgstr ""
+
+#: griddialog.ui:56
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear ascending"
+msgstr ""
+
+#: griddialog.ui:57
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Linear descending"
+msgstr ""
+
+#: griddialog.ui:58
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Original values"
+msgstr ""
+
+#: griddialog.ui:59
+msgctxt "griddialog|resetTypeCombobox"
+msgid "Exponential increasing"
+msgstr ""
+
+#: griddialog.ui:70
+msgctxt "griddialog|resetButton"
+msgid "_Set"
+msgstr ""
+
+#: sanedialog.ui:9
+msgctxt "sanedialog|SaneDialog"
+msgid "Scanner"
+msgstr ""
+
+#: sanedialog.ui:46
+msgctxt "sanedialog|label3"
+msgid "_Left:"
+msgstr ""
+
+#: sanedialog.ui:62
+msgctxt "sanedialog|label4"
+msgid "To_p:"
+msgstr ""
+
+#: sanedialog.ui:78
+msgctxt "sanedialog|label5"
+msgid "_Right:"
+msgstr ""
+
+#: sanedialog.ui:94
+msgctxt "sanedialog|label6"
+msgid "_Bottom:"
+msgstr ""
+
+#: sanedialog.ui:166
+msgctxt "sanedialog|label1"
+msgid "Scan area"
+msgstr ""
+
+#: sanedialog.ui:208
+msgctxt "sanedialog|label2"
+msgid "Preview"
+msgstr ""
+
+#: sanedialog.ui:242
+msgctxt "sanedialog|label7"
+msgid "Device _used"
+msgstr ""
+
+#: sanedialog.ui:258
+msgctxt "sanedialog|label8"
+msgid "Resolution [_DPI]"
+msgstr ""
+
+#: sanedialog.ui:312
+msgctxt "sanedialog|advancedCheckbutton"
+msgid "Show advanced options"
+msgstr ""
+
+#: sanedialog.ui:344
+msgctxt "sanedialog|label10"
+msgid "Options:"
+msgstr ""
+
+#: sanedialog.ui:416
+msgctxt "sanedialog|optionsButton"
+msgid "Se_t"
+msgstr ""
+
+#: sanedialog.ui:500
+msgctxt "sanedialog|vectorLabel"
+msgid "Vector element"
+msgstr ""
+
+#: sanedialog.ui:629
+msgctxt "sanedialog|deviceInfoButton"
+msgid "About Dev_ice"
+msgstr ""
+
+#: sanedialog.ui:644
+msgctxt "sanedialog|previewButton"
+msgid "Create Previe_w"
+msgstr ""
+
+#: sanedialog.ui:659
+msgctxt "sanedialog|scanButton"
+msgid "_Scan"
+msgstr ""
diff --git a/source/en-ZA/filter/messages.po b/source/en-ZA/filter/messages.po
index 22f599cf6e0..d7e045bfc8f 100644
--- a/source/en-ZA/filter/messages.po
+++ b/source/en-ZA/filter/messages.po
@@ -1,9 +1,9 @@
-#. extracted from filter/uiconfig/ui
+#. extracted from filter/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,6 +13,261 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+#: strings.hrc:25
+msgctxt "STR_COLUMN_HEADER_NAME"
+msgid "Name"
+msgstr "Name"
+
+#: strings.hrc:26
+msgctxt "STR_COLUMN_HEADER_TYPE"
+msgid "Type"
+msgstr "Type"
+
+#: strings.hrc:27
+msgctxt "STR_UNKNOWN_APPLICATION"
+msgid "Unknown"
+msgstr "Unknown"
+
+#: strings.hrc:28
+msgctxt "STR_IMPORT_ONLY"
+msgid "import filter"
+msgstr "import filter"
+
+#: strings.hrc:29
+msgctxt "STR_IMPORT_EXPORT"
+msgid "import/export filter"
+msgstr "import/export filter"
+
+#: strings.hrc:30
+msgctxt "STR_EXPORT_ONLY"
+msgid "export filter"
+msgstr "export filter"
+
+#: strings.hrc:31
+#, c-format
+msgctxt "STR_WARN_DELETE"
+msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+msgstr "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
+
+#: strings.hrc:32
+#, c-format
+msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
+msgid "An XML filter with the name '%s' already exists. Please enter a different name."
+msgstr "An XML filter with the name '%s' already exists. Please enter a different name."
+
+#: strings.hrc:33
+#, fuzzy, c-format
+msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
+msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+msgstr "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
+
+#: strings.hrc:34
+msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for export cannot be found. Please enter a valid path."
+msgstr "The XSLT for export cannot be found. Please enter a valid path."
+
+#: strings.hrc:35
+msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
+msgid "The XSLT for import cannot be found. Please enter a valid path."
+msgstr "The XSLT for import cannot be found. Please enter a valid path."
+
+#: strings.hrc:36
+msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
+msgid "The given import template cannot be found. Please enter a valid path."
+msgstr "The given import template cannot be found. Please enter a valid path."
+
+#: strings.hrc:37
+msgctxt "STR_DEFAULT_FILTER_NAME"
+msgid "New Filter"
+msgstr "New Filter"
+
+#: strings.hrc:38
+msgctxt "STR_DEFAULT_UI_NAME"
+msgid "Untitled"
+msgstr "Untitled"
+
+#: strings.hrc:39
+msgctxt "STR_UNDEFINED_FILTER"
+msgid "undefined filter"
+msgstr "undefined filter"
+
+#: strings.hrc:40
+#, c-format
+msgctxt "STR_FILTER_HAS_BEEN_SAVED"
+msgid "The XML filter '%s' has been saved as package '%s'. "
+msgstr "The XML filter '%s' has been saved as package '%s'. "
+
+#: strings.hrc:41
+#, c-format
+msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
+msgid "%s XML filters have been saved in the package '%s'."
+msgstr "%s XML filters have been saved in the package '%s'."
+
+#: strings.hrc:42
+msgctxt "STR_FILTER_PACKAGE"
+msgid "XSLT filter package"
+msgstr "XSLT filter package"
+
+#: strings.hrc:43
+#, c-format
+msgctxt "STR_FILTER_INSTALLED"
+msgid "The XML filter '%s' has been installed successfully."
+msgstr "The XML filter '%s' has been installed successfully."
+
+#: strings.hrc:44
+#, c-format
+msgctxt "STR_FILTERS_INSTALLED"
+msgid "%s XML filters have been installed successfully."
+msgstr "%s XML filters have been installed successfully."
+
+#: strings.hrc:45
+#, c-format
+msgctxt "STR_NO_FILTERS_FOUND"
+msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
+msgstr "No XML filter could be installed because the package '%s' does not contain any XML filters."
+
+#: strings.hrc:46
+msgctxt "STR_XML_FILTER_LISTBOX"
+msgid "XML Filter List"
+msgstr "XML Filter List"
+
+#: strings.hrc:48
+msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
+msgid "Settings for T602 import"
+msgstr "Settings for T602 import"
+
+#: strings.hrc:49
+msgctxt "T602FILTER_STR_ENCODING_LABEL"
+msgid "Encoding"
+msgstr "Encoding"
+
+#: strings.hrc:50
+msgctxt "T602FILTER_STR_ENCODING_AUTO"
+msgid "Automatic"
+msgstr "Automatic"
+
+#: strings.hrc:51
+msgctxt "T602FILTER_STR_ENCODING_CP852"
+msgid "CP852 (Latin2)"
+msgstr "CP852 (Latin2)"
+
+#: strings.hrc:52
+msgctxt "T602FILTER_STR_ENCODING_CP895"
+msgid "CP895 (KEYB2CS, Kamenicky)"
+msgstr "CP895 (KEYB2CS, Kamenicky)"
+
+#: strings.hrc:53
+msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
+msgid "KOI8 CS2"
+msgstr "KOI8 CS2"
+
+#: strings.hrc:54
+msgctxt "T602FILTER_STR_CYRILLIC_MODE"
+msgid "Mode for Russian language (Cyrillic)"
+msgstr "Mode for Russian language (Cyrillic)"
+
+#: strings.hrc:55
+msgctxt "T602FILTER_STR_REFORMAT_TEXT"
+msgid "Reformat the text"
+msgstr "Reformat the text"
+
+#: strings.hrc:56
+msgctxt "T602FILTER_STR_DOT_COMMANDS"
+msgid "Display dot commands"
+msgstr "Display dot commands"
+
+#: strings.hrc:57
+msgctxt "T602FILTER_STR_CANCEL_BUTTON"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: strings.hrc:58
+msgctxt "T602FILTER_STR_OK_BUTTON"
+msgid "OK"
+msgstr "OK"
+
+#: strings.hrc:60
+msgctxt "KEY_VERSION_CHECK"
+msgid ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
+msgstr ""
+"Warning: Not all of the imported EPS graphics could be saved at level1\n"
+"as some are at a higher level!"
+
+#: strings.hrc:62
+msgctxt "PDF_PROGRESS_BAR"
+msgid "Export as PDF"
+msgstr "Export as PDF"
+
+#. strings used in encryption UI
+#. password dialog title
+#: strings.hrc:66
+msgctxt "STR_PDF_EXPORT_UDPWD"
+msgid "Set open password"
+msgstr "Set open password"
+
+#. password dialog title
+#: strings.hrc:68
+msgctxt "STR_PDF_EXPORT_ODPWD"
+msgid "Set permission password"
+msgstr "Set permission password"
+
+#: strings.hrc:69
+msgctxt "STR_WARN_PASSWORD_PDFA"
+msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
+msgstr ""
+
+#: strings.hrc:70
+msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
+msgid "PDF/A transparency"
+msgstr ""
+
+#: strings.hrc:71
+msgctxt "STR_WARN_TRANSP_PDFA"
+msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
+msgstr ""
+
+#: strings.hrc:72
+msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
+msgid "PDF version conflict"
+msgstr ""
+
+#: strings.hrc:73
+msgctxt "STR_WARN_TRANSP_VERSION"
+msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
+msgstr ""
+
+#: strings.hrc:74
+msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
+msgid "PDF/A form action"
+msgstr ""
+
+#: strings.hrc:75
+msgctxt "STR_WARN_FORMACTION_PDFA"
+msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
+msgstr ""
+
+#: strings.hrc:76
+msgctxt "STR_WARN_TRANSP_CONVERTED"
+msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
+msgstr ""
+
+#: strings.hrc:77
+msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
+msgid "Transparencies removed"
+msgstr ""
+
+#: strings.hrc:78
+msgctxt "STR_ERR_SIGNATURE_FAILED"
+msgid "Signature generation failed"
+msgstr ""
+
+#: strings.hrc:79
+msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
+msgid "PDF export aborted"
+msgstr ""
+
#: impswfdialog.ui:14
msgctxt "impswfdialog|ImpSWFDialog"
msgid "Flash (SWF) Options"
@@ -330,32 +585,32 @@ msgctxt "pdfoptionsdialog|ok"
msgid "E_xport"
msgstr ""
-#: pdfoptionsdialog.ui:86
+#: pdfoptionsdialog.ui:92
msgctxt "pdfoptionsdialog|general"
msgid "General"
msgstr ""
-#: pdfoptionsdialog.ui:99
+#: pdfoptionsdialog.ui:114
msgctxt "pdfoptionsdialog|initialview"
msgid "Initial View"
msgstr ""
-#: pdfoptionsdialog.ui:113
+#: pdfoptionsdialog.ui:137
msgctxt "pdfoptionsdialog|userinterface"
msgid "User Interface"
msgstr ""
-#: pdfoptionsdialog.ui:127
+#: pdfoptionsdialog.ui:160
msgctxt "pdfoptionsdialog|links"
msgid "Links"
msgstr ""
-#: pdfoptionsdialog.ui:141
+#: pdfoptionsdialog.ui:183
msgctxt "pdfoptionsdialog|security"
msgid "Security"
msgstr ""
-#: pdfoptionsdialog.ui:155
+#: pdfoptionsdialog.ui:206
msgctxt "pdfoptionsdialog|digitalsignatures"
msgid "Digital Signatures"
msgstr ""
@@ -875,267 +1130,12 @@ msgctxt "xsltfilterdialog|XSLTFilterDialog"
msgid "XML Filter: %s"
msgstr ""
-#: xsltfilterdialog.ui:86
+#: xsltfilterdialog.ui:92
msgctxt "xsltfilterdialog|general"
msgid "General"
msgstr ""
-#: xsltfilterdialog.ui:99
+#: xsltfilterdialog.ui:114
msgctxt "xsltfilterdialog|transformation"
msgid "Transformation"
msgstr ""
-
-#: strings.hrc:25
-msgctxt "STR_COLUMN_HEADER_NAME"
-msgid "Name"
-msgstr "Name"
-
-#: strings.hrc:26
-msgctxt "STR_COLUMN_HEADER_TYPE"
-msgid "Type"
-msgstr "Type"
-
-#: strings.hrc:27
-msgctxt "STR_UNKNOWN_APPLICATION"
-msgid "Unknown"
-msgstr "Unknown"
-
-#: strings.hrc:28
-msgctxt "STR_IMPORT_ONLY"
-msgid "import filter"
-msgstr "import filter"
-
-#: strings.hrc:29
-msgctxt "STR_IMPORT_EXPORT"
-msgid "import/export filter"
-msgstr "import/export filter"
-
-#: strings.hrc:30
-msgctxt "STR_EXPORT_ONLY"
-msgid "export filter"
-msgstr "export filter"
-
-#: strings.hrc:31
-#, c-format
-msgctxt "STR_WARN_DELETE"
-msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
-msgstr "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
-
-#: strings.hrc:32
-#, c-format
-msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
-msgid "An XML filter with the name '%s' already exists. Please enter a different name."
-msgstr "An XML filter with the name '%s' already exists. Please enter a different name."
-
-#: strings.hrc:33
-#, fuzzy, c-format
-msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
-msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
-msgstr "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
-
-#: strings.hrc:34
-msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
-msgid "The XSLT for export cannot be found. Please enter a valid path."
-msgstr "The XSLT for export cannot be found. Please enter a valid path."
-
-#: strings.hrc:35
-msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
-msgid "The XSLT for import cannot be found. Please enter a valid path."
-msgstr "The XSLT for import cannot be found. Please enter a valid path."
-
-#: strings.hrc:36
-msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
-msgid "The given import template cannot be found. Please enter a valid path."
-msgstr "The given import template cannot be found. Please enter a valid path."
-
-#: strings.hrc:37
-msgctxt "STR_DEFAULT_FILTER_NAME"
-msgid "New Filter"
-msgstr "New Filter"
-
-#: strings.hrc:38
-msgctxt "STR_DEFAULT_UI_NAME"
-msgid "Untitled"
-msgstr "Untitled"
-
-#: strings.hrc:39
-msgctxt "STR_UNDEFINED_FILTER"
-msgid "undefined filter"
-msgstr "undefined filter"
-
-#: strings.hrc:40
-#, c-format
-msgctxt "STR_FILTER_HAS_BEEN_SAVED"
-msgid "The XML filter '%s' has been saved as package '%s'. "
-msgstr "The XML filter '%s' has been saved as package '%s'. "
-
-#: strings.hrc:41
-#, c-format
-msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
-msgid "%s XML filters have been saved in the package '%s'."
-msgstr "%s XML filters have been saved in the package '%s'."
-
-#: strings.hrc:42
-msgctxt "STR_FILTER_PACKAGE"
-msgid "XSLT filter package"
-msgstr "XSLT filter package"
-
-#: strings.hrc:43
-#, c-format
-msgctxt "STR_FILTER_INSTALLED"
-msgid "The XML filter '%s' has been installed successfully."
-msgstr "The XML filter '%s' has been installed successfully."
-
-#: strings.hrc:44
-#, c-format
-msgctxt "STR_FILTERS_INSTALLED"
-msgid "%s XML filters have been installed successfully."
-msgstr "%s XML filters have been installed successfully."
-
-#: strings.hrc:45
-#, c-format
-msgctxt "STR_NO_FILTERS_FOUND"
-msgid "No XML filter could be installed because the package '%s' does not contain any XML filters."
-msgstr "No XML filter could be installed because the package '%s' does not contain any XML filters."
-
-#: strings.hrc:46
-msgctxt "STR_XML_FILTER_LISTBOX"
-msgid "XML Filter List"
-msgstr "XML Filter List"
-
-#: strings.hrc:48
-msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
-msgid "Settings for T602 import"
-msgstr "Settings for T602 import"
-
-#: strings.hrc:49
-msgctxt "T602FILTER_STR_ENCODING_LABEL"
-msgid "Encoding"
-msgstr "Encoding"
-
-#: strings.hrc:50
-msgctxt "T602FILTER_STR_ENCODING_AUTO"
-msgid "Automatic"
-msgstr "Automatic"
-
-#: strings.hrc:51
-msgctxt "T602FILTER_STR_ENCODING_CP852"
-msgid "CP852 (Latin2)"
-msgstr "CP852 (Latin2)"
-
-#: strings.hrc:52
-msgctxt "T602FILTER_STR_ENCODING_CP895"
-msgid "CP895 (KEYB2CS, Kamenicky)"
-msgstr "CP895 (KEYB2CS, Kamenicky)"
-
-#: strings.hrc:53
-msgctxt "T602FILTER_STR_ENCODING_KOI8CS2"
-msgid "KOI8 CS2"
-msgstr "KOI8 CS2"
-
-#: strings.hrc:54
-msgctxt "T602FILTER_STR_CYRILLIC_MODE"
-msgid "Mode for Russian language (Cyrillic)"
-msgstr "Mode for Russian language (Cyrillic)"
-
-#: strings.hrc:55
-msgctxt "T602FILTER_STR_REFORMAT_TEXT"
-msgid "Reformat the text"
-msgstr "Reformat the text"
-
-#: strings.hrc:56
-msgctxt "T602FILTER_STR_DOT_COMMANDS"
-msgid "Display dot commands"
-msgstr "Display dot commands"
-
-#: strings.hrc:57
-msgctxt "T602FILTER_STR_CANCEL_BUTTON"
-msgid "Cancel"
-msgstr "Cancel"
-
-#: strings.hrc:58
-msgctxt "T602FILTER_STR_OK_BUTTON"
-msgid "OK"
-msgstr "OK"
-
-#: strings.hrc:60
-msgctxt "KEY_VERSION_CHECK"
-msgid ""
-"Warning: Not all of the imported EPS graphics could be saved at level1\n"
-"as some are at a higher level!"
-msgstr ""
-"Warning: Not all of the imported EPS graphics could be saved at level1\n"
-"as some are at a higher level!"
-
-#: strings.hrc:62
-msgctxt "PDF_PROGRESS_BAR"
-msgid "Export as PDF"
-msgstr "Export as PDF"
-
-#. strings used in encryption UI
-#. password dialog title
-#: strings.hrc:66
-msgctxt "STR_PDF_EXPORT_UDPWD"
-msgid "Set open password"
-msgstr "Set open password"
-
-#. password dialog title
-#: strings.hrc:68
-msgctxt "STR_PDF_EXPORT_ODPWD"
-msgid "Set permission password"
-msgstr "Set permission password"
-
-#: strings.hrc:69
-msgctxt "STR_WARN_PASSWORD_PDFA"
-msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected."
-msgstr ""
-
-#: strings.hrc:70
-msgctxt "STR_WARN_TRANSP_PDFA_SHORT"
-msgid "PDF/A transparency"
-msgstr ""
-
-#: strings.hrc:71
-msgctxt "STR_WARN_TRANSP_PDFA"
-msgid "PDF/A forbids transparency. A transparent object was painted opaque instead."
-msgstr ""
-
-#: strings.hrc:72
-msgctxt "STR_WARN_TRANSP_VERSION_SHORT"
-msgid "PDF version conflict"
-msgstr ""
-
-#: strings.hrc:73
-msgctxt "STR_WARN_TRANSP_VERSION"
-msgid "Transparency is not supported in PDF versions earlier than PDF 1.4. A transparent object was painted opaque instead"
-msgstr ""
-
-#: strings.hrc:74
-msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
-msgid "PDF/A form action"
-msgstr ""
-
-#: strings.hrc:75
-msgctxt "STR_WARN_FORMACTION_PDFA"
-msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
-msgstr ""
-
-#: strings.hrc:76
-msgctxt "STR_WARN_TRANSP_CONVERTED"
-msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting."
-msgstr ""
-
-#: strings.hrc:77
-msgctxt "STR_WARN_TRANSP_CONVERTED_SHORT"
-msgid "Transparencies removed"
-msgstr ""
-
-#: strings.hrc:78
-msgctxt "STR_ERR_SIGNATURE_FAILED"
-msgid "Signature generation failed"
-msgstr ""
-
-#: strings.hrc:79
-msgctxt "STR_ERR_PDF_EXPORT_ABORTED"
-msgid "PDF export aborted"
-msgstr ""
diff --git a/source/en-ZA/filter/source/config/fragments/filters.po b/source/en-ZA/filter/source/config/fragments/filters.po
index 5087c3d3512..7f1d09e33a6 100644
--- a/source/en-ZA/filter/source/config/fragments/filters.po
+++ b/source/en-ZA/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-12-01 14:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -834,24 +834,6 @@ msgctxt ""
msgid "Rich Text Format (Calc)"
msgstr ""
-#: SGF___StarOffice_Writer_SGF.xcu
-msgctxt ""
-"SGF___StarOffice_Writer_SGF.xcu\n"
-"SGF - StarOffice Writer SGF\n"
-"UIName\n"
-"value.text"
-msgid "SGF - StarWriter Graphics Format"
-msgstr ""
-
-#: SGV___StarDraw_2_0.xcu
-msgctxt ""
-"SGV___StarDraw_2_0.xcu\n"
-"SGV - StarDraw 2.0\n"
-"UIName\n"
-"value.text"
-msgid "SGV - StarDraw 2.0"
-msgstr ""
-
#: SVG___Scalable_Vector_Graphics.xcu
msgctxt ""
"SVG___Scalable_Vector_Graphics.xcu\n"
diff --git a/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po b/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po
index 13c9d2d6b72..f1412127dc7 100644
--- a/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 22:34+0000\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
+"PO-Revision-Date: 2016-11-14 17:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457649267.000000\n"
+"X-POOTLE-MTIME: 1479145030.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -259,24 +259,6 @@ msgctxt ""
msgid "RAS - Sun Raster Image"
msgstr "RAS - Sun Raster Image"
-#: sgf_Import.xcu
-msgctxt ""
-"sgf_Import.xcu\n"
-"sgf_Import\n"
-"UIName\n"
-"value.text"
-msgid "SGF - StarWriter Graphics Format"
-msgstr "SGF - StarWriter Graphics Format"
-
-#: sgv_Import.xcu
-msgctxt ""
-"sgv_Import.xcu\n"
-"sgv_Import\n"
-"UIName\n"
-"value.text"
-msgid "SGV - StarDraw 2.0"
-msgstr "SGV - StarDraw 2.0"
-
#: svg_Export.xcu
msgctxt ""
"svg_Export.xcu\n"
diff --git a/source/en-ZA/formula/messages.po b/source/en-ZA/formula/messages.po
index 9cd911263cb..ff2071ffd3d 100644
--- a/source/en-ZA/formula/messages.po
+++ b/source/en-ZA/formula/messages.po
@@ -1,9 +1,9 @@
-#. extracted from formula/uiconfig/ui
+#. extracted from formula/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,111 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: formuladialog.ui:22
-msgctxt "formuladialog|array"
-msgid "Array"
-msgstr ""
-
-#: formuladialog.ui:57
-msgctxt "formuladialog|back"
-msgid "< _Back"
-msgstr ""
-
-#: formuladialog.ui:72
-msgctxt "formuladialog|next"
-msgid "_Next >"
-msgstr ""
-
-#: formuladialog.ui:152
-msgctxt "formuladialog|function"
-msgid "Functions"
-msgstr ""
-
-#: formuladialog.ui:165
-msgctxt "formuladialog|struct"
-msgid "Structure"
-msgstr ""
-
-#: formuladialog.ui:203
-msgctxt "formuladialog|label2"
-msgid "Function result"
-msgstr ""
-
-#: formuladialog.ui:344
-msgctxt "formuladialog|formula"
-msgid "For_mula"
-msgstr ""
-
-#: formuladialog.ui:359
-msgctxt "formuladialog|label1"
-msgid "Result"
-msgstr ""
-
-#: formuladialog.ui:394
-msgctxt "formuladialog|ed_formula-atkobject"
-msgid "Formula"
-msgstr ""
-
-#: formuladialog.ui:443
-msgctxt "formuladialog|RB_REF|tooltip_text"
-msgid "Maximize"
-msgstr ""
-
-#: functionpage.ui:19
-msgctxt "functionpage|label_search"
-msgid "_Search"
-msgstr ""
-
-#: functionpage.ui:47
-msgctxt "functionpage|label1"
-msgid "_Category"
-msgstr ""
-
-#: functionpage.ui:63
-msgctxt "functionpage|category"
-msgid "Last Used"
-msgstr ""
-
-#: functionpage.ui:64
-msgctxt "functionpage|category"
-msgid "All"
-msgstr ""
-
-#: functionpage.ui:78
-msgctxt "functionpage|label2"
-msgid "_Function"
-msgstr ""
-
-#: parameter.ui:30
-msgctxt "parameter|editdesc"
-msgid "Function not known"
-msgstr ""
-
-#: parameter.ui:279
-msgctxt "parameter|RB_ARG1|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#: parameter.ui:295
-msgctxt "parameter|RB_ARG2|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#: parameter.ui:311
-msgctxt "parameter|RB_ARG3|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#: parameter.ui:327
-msgctxt "parameter|RB_ARG4|tooltip_text"
-msgid "Select"
-msgstr ""
-
-#: structpage.ui:19
-msgctxt "structpage|label1"
-msgid "_Structure"
-msgstr ""
-
#: core_resource.hrc:2258
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "IF"
@@ -2252,3 +2147,108 @@ msgstr ""
msgctxt "RID_STR_EXPAND"
msgid "Expand"
msgstr ""
+
+#: formuladialog.ui:22
+msgctxt "formuladialog|array"
+msgid "Array"
+msgstr ""
+
+#: formuladialog.ui:57
+msgctxt "formuladialog|back"
+msgid "< _Back"
+msgstr ""
+
+#: formuladialog.ui:72
+msgctxt "formuladialog|next"
+msgid "_Next >"
+msgstr ""
+
+#: formuladialog.ui:158
+msgctxt "formuladialog|function"
+msgid "Functions"
+msgstr ""
+
+#: formuladialog.ui:180
+msgctxt "formuladialog|struct"
+msgid "Structure"
+msgstr ""
+
+#: formuladialog.ui:227
+msgctxt "formuladialog|label2"
+msgid "Function result"
+msgstr ""
+
+#: formuladialog.ui:368
+msgctxt "formuladialog|formula"
+msgid "For_mula"
+msgstr ""
+
+#: formuladialog.ui:383
+msgctxt "formuladialog|label1"
+msgid "Result"
+msgstr ""
+
+#: formuladialog.ui:418
+msgctxt "formuladialog|ed_formula-atkobject"
+msgid "Formula"
+msgstr ""
+
+#: formuladialog.ui:467
+msgctxt "formuladialog|RB_REF|tooltip_text"
+msgid "Maximize"
+msgstr ""
+
+#: functionpage.ui:19
+msgctxt "functionpage|label_search"
+msgid "_Search"
+msgstr ""
+
+#: functionpage.ui:47
+msgctxt "functionpage|label1"
+msgid "_Category"
+msgstr ""
+
+#: functionpage.ui:63
+msgctxt "functionpage|category"
+msgid "Last Used"
+msgstr ""
+
+#: functionpage.ui:64
+msgctxt "functionpage|category"
+msgid "All"
+msgstr ""
+
+#: functionpage.ui:78
+msgctxt "functionpage|label2"
+msgid "_Function"
+msgstr ""
+
+#: parameter.ui:30
+msgctxt "parameter|editdesc"
+msgid "Function not known"
+msgstr ""
+
+#: parameter.ui:279
+msgctxt "parameter|RB_ARG1|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:295
+msgctxt "parameter|RB_ARG2|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:311
+msgctxt "parameter|RB_ARG3|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: parameter.ui:327
+msgctxt "parameter|RB_ARG4|tooltip_text"
+msgid "Select"
+msgstr ""
+
+#: structpage.ui:19
+msgctxt "structpage|label1"
+msgid "_Structure"
+msgstr ""
diff --git a/source/en-ZA/fpicker/messages.po b/source/en-ZA/fpicker/messages.po
index c10f16b3c99..fd0336423b8 100644
--- a/source/en-ZA/fpicker/messages.po
+++ b/source/en-ZA/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -126,6 +126,74 @@ msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr ""
+#: strings.hrc:25
+msgctxt "STR_EXPLORERFILE_OPEN"
+msgid "Open"
+msgstr "Open"
+
+#: strings.hrc:26
+msgctxt "STR_EXPLORERFILE_SAVE"
+msgid "Save as"
+msgstr "Save as"
+
+#: strings.hrc:27
+msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
+msgid "~Save"
+msgstr "~Save"
+
+#: strings.hrc:28
+msgctxt "STR_PATHNAME"
+msgid "~Path:"
+msgstr "~Path:"
+
+#: strings.hrc:29
+msgctxt "STR_PATHSELECT"
+msgid "Select path"
+msgstr "Select path"
+
+#: strings.hrc:30
+msgctxt "STR_BUTTONSELECT"
+msgid "~Select"
+msgstr "~Select"
+
+#: strings.hrc:31
+msgctxt "STR_PREVIEW"
+msgid "File Preview"
+msgstr "File Preview"
+
+#: strings.hrc:32
+msgctxt "STR_DEFAULT_DIRECTORY"
+msgid "My Documents"
+msgstr "My Documents"
+
+#: strings.hrc:33
+msgctxt "STR_PLACES_TITLE"
+msgid "Places"
+msgstr "Places"
+
+#: strings.hrc:34
+msgctxt "RID_FILEOPEN_NOTEXISTENTFILE"
+msgid ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+msgstr ""
+"The file $name$ does not exist.\n"
+"Make sure you have entered the correct file name."
+
+#: strings.hrc:35
+msgctxt "STR_SVT_NEW_FOLDER"
+msgid "Folder"
+msgstr "Folder"
+
+#: strings.hrc:36
+msgctxt "STR_SVT_NOREMOVABLEDEVICE"
+msgid ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+msgstr ""
+"No removable storage device detected.\n"
+"Make sure it is plugged in properly and try again."
+
#: explorerfiledialog.ui:72
msgctxt "explorerfiledialog|connect_to_server"
msgid "Servers..."
@@ -255,71 +323,3 @@ msgstr ""
msgctxt "remotefilesdialog|change_password"
msgid "_Change password"
msgstr ""
-
-#: strings.hrc:25
-msgctxt "STR_EXPLORERFILE_OPEN"
-msgid "Open"
-msgstr "Open"
-
-#: strings.hrc:26
-msgctxt "STR_EXPLORERFILE_SAVE"
-msgid "Save as"
-msgstr "Save as"
-
-#: strings.hrc:27
-msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
-msgid "~Save"
-msgstr "~Save"
-
-#: strings.hrc:28
-msgctxt "STR_PATHNAME"
-msgid "~Path:"
-msgstr "~Path:"
-
-#: strings.hrc:29
-msgctxt "STR_PATHSELECT"
-msgid "Select path"
-msgstr "Select path"
-
-#: strings.hrc:30
-msgctxt "STR_BUTTONSELECT"
-msgid "~Select"
-msgstr "~Select"
-
-#: strings.hrc:31
-msgctxt "STR_PREVIEW"
-msgid "File Preview"
-msgstr "File Preview"
-
-#: strings.hrc:32
-msgctxt "STR_DEFAULT_DIRECTORY"
-msgid "My Documents"
-msgstr "My Documents"
-
-#: strings.hrc:33
-msgctxt "STR_PLACES_TITLE"
-msgid "Places"
-msgstr "Places"
-
-#: strings.hrc:34
-msgctxt "RID_FILEOPEN_NOTEXISTENTFILE"
-msgid ""
-"The file $name$ does not exist.\n"
-"Make sure you have entered the correct file name."
-msgstr ""
-"The file $name$ does not exist.\n"
-"Make sure you have entered the correct file name."
-
-#: strings.hrc:35
-msgctxt "STR_SVT_NEW_FOLDER"
-msgid "Folder"
-msgstr "Folder"
-
-#: strings.hrc:36
-msgctxt "STR_SVT_NOREMOVABLEDEVICE"
-msgid ""
-"No removable storage device detected.\n"
-"Make sure it is plugged in properly and try again."
-msgstr ""
-"No removable storage device detected.\n"
-"Make sure it is plugged in properly and try again."
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
index a339924deb0..003a4a445da 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-07-05 18:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -33869,7 +33869,7 @@ msgctxt ""
"03140009.xhp\n"
"par_id061420170420246794\n"
"help.text"
-msgid "<emph>P</emph><emph>mt</emph> is the regular payment made per period."
+msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr ""
#: 03140009.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/00.po b/source/en-ZA/helpcontent2/source/text/scalc/00.po
index a7e55c8f1a0..8ce5ffc97a2 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/00.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-12-22 17:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -133,8 +133,8 @@ msgctxt ""
"00000402.xhp\n"
"par_id3150400\n"
"help.text"
-msgid "<variable id=\"baustab\">Choose <emph>Sheet - Fill Cells - Sheet</emph></variable>"
-msgstr "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgid "<variable id=\"baustab\">Choose <emph>Sheet - Fill Cells - Sheets</emph></variable>"
+msgstr ""
#: 00000402.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index f1b66f9566d..f0db42a2ee0 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-12-22 19:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1077,32 +1077,48 @@ msgctxt ""
"02140500.xhp\n"
"tit\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Fill Sheet"
+msgid "Fill Sheets"
+msgstr ""
#: 02140500.xhp
msgctxt ""
"02140500.xhp\n"
"hd_id3153897\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Fill Sheet"
+msgid "Fill Sheets"
+msgstr ""
#: 02140500.xhp
msgctxt ""
"02140500.xhp\n"
"par_id3150791\n"
"help.text"
-msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
-msgstr "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\">Specifies the options for transferring sheets or ranges of a certain sheet to the same cells on other selected sheets.</ahelp></variable>"
+msgstr ""
+
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150768\n"
+"help.text"
+msgid "This menu command is only active if you have selected at least two sheets in the document."
+msgstr ""
+
+#: 02140500.xhp
+msgctxt ""
+"02140500.xhp\n"
+"par_id3150769\n"
+"help.text"
+msgid "To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgstr ""
#: 02140500.xhp
msgctxt ""
"02140500.xhp\n"
"par_id3150767\n"
"help.text"
-msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
-msgstr "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values."
+msgstr ""
#: 02140500.xhp
msgctxt ""
@@ -1133,8 +1149,8 @@ msgctxt ""
"02140500.xhp\n"
"par_id3147436\n"
"help.text"
-msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
-msgstr "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialogue which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgid "Select the command <emph>Sheet - Fill Cells - Sheets</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgstr ""
#: 02140500.xhp
msgctxt ""
@@ -1149,8 +1165,8 @@ msgctxt ""
"02140500.xhp\n"
"par_id3156283\n"
"help.text"
-msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
-msgstr "This dialogue is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialogue, where you can find additional tips."
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link> dialog, where you can find additional tips."
+msgstr ""
#: 02140600.xhp
msgctxt ""
@@ -1509,7 +1525,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431525817\n"
"help.text"
-msgid "Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters."
+msgid "<ahelp hid=\".\">Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters.</ahelp>"
msgstr ""
#: 02140700.xhp
@@ -1525,7 +1541,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415500176457\n"
"help.text"
-msgid "Menu <item type=\"menuitem\">Edit – Fill – Random Numbers</item>"
+msgid "Choose <item type=\"menuitem\">Sheet - Fill Cells - Random Number</item>"
msgstr ""
#: 02140700.xhp
@@ -1549,7 +1565,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431811111\n"
"help.text"
-msgid "Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here."
+msgid "<ahelp hid=\".\">Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here.</ahelp>"
msgstr ""
#: 02140700.xhp
@@ -1829,7 +1845,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431841782\n"
"help.text"
-msgid "Set the initial value of the random number generator to a known value <emph>Seed.</emph>"
+msgid "<ahelp hid=\".\">Set the initial value of the random number generator to a known value <emph>Seed.</emph></ahelp>"
msgstr ""
#: 02140700.xhp
@@ -1845,7 +1861,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431834837\n"
"help.text"
-msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature."
+msgid "<ahelp hid=\".\">Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature.</ahelp>"
msgstr ""
#: 02140700.xhp
@@ -1861,7 +1877,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431822157\n"
"help.text"
-msgid "Truncate the number to a given number of <emph>Decimal Places</emph>."
+msgid "<ahelp hid=\".\">Truncate the number to a given number of <emph>Decimal Places</emph>.</ahelp>"
msgstr ""
#: 02140700.xhp
@@ -1877,7 +1893,7 @@ msgctxt ""
"02140700.xhp\n"
"par_id2308201415431820502\n"
"help.text"
-msgid "Number of decimal places of the numbers generated."
+msgid "<ahelp hid=\".\">Number of decimal places of the numbers generated.</ahelp>"
msgstr ""
#: 02150000.xhp
@@ -2245,7 +2261,7 @@ msgctxt ""
"02170000.xhp\n"
"par_id3145801\n"
"help.text"
-msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record Changes</emph> is activated."
+msgid "You cannot delete a sheet while <emph>Edit - Track Changes - Record</emph> is activated."
msgstr ""
#: 02170000.xhp
@@ -20781,8 +20797,8 @@ msgctxt ""
"04060109.xhp\n"
"par_id3150826\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
-msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a colour to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell depending on the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -24149,7 +24165,7 @@ msgctxt ""
"04060110.xhp\n"
"par_id3156074\n"
"help.text"
-msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
+msgid "<item type=\"input\">=TRIM(\" hello world \")</item> returns hello world without leading and trailing spaces and with single space between words."
msgstr ""
#: 04060110.xhp
@@ -26957,7 +26973,7 @@ msgctxt ""
"04060115.xhp\n"
"par_id050220171019078280\n"
"help.text"
-msgid "=BESSELJ(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored."
+msgid "=BESSELJ(3.45, 4.333), returns 0.196772639864984, same as above because the fractional part of N is ignored."
msgstr ""
#: 04060115.xhp
@@ -30677,8 +30693,8 @@ msgctxt ""
"04060118.xhp\n"
"par_id3149025\n"
"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
-msgstr "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; NoSwitch)"
+msgstr ""
#: 04060118.xhp
msgctxt ""
@@ -30733,8 +30749,8 @@ msgctxt ""
"04060118.xhp\n"
"par_id3154865\n"
"help.text"
-msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
-msgstr "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgid "<emph>NoSwitch</emph>is an optional parameter. NoSwitch = 0 (default) means a switch to linear depreciation. In NoSwitch = 1 no switch is made."
+msgstr ""
#: 04060118.xhp
msgctxt ""
@@ -48845,16 +48861,16 @@ msgctxt ""
"05070500.xhp\n"
"par_idN109BF\n"
"help.text"
-msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
-msgstr "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgid "You may disable one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr ""
#: 05070500.xhp
msgctxt ""
"05070500.xhp\n"
"par_idN109C3\n"
"help.text"
-msgid "If you clear both boxes, this will result in a scaling factor of 100%."
-msgstr "If you clear both boxes, this will result in a scaling factor of 100%."
+msgid "If you disable both boxes, this will result in a scaling factor of 100%."
+msgstr ""
#: 05070500.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/schart/01.po b/source/en-ZA/helpcontent2/source/text/schart/01.po
index 6261c89adfc..4596c8d4092 100644
--- a/source/en-ZA/helpcontent2/source/text/schart/01.po
+++ b/source/en-ZA/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-03-10 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4749,8 +4749,8 @@ msgctxt ""
"three_d_view.xhp\n"
"par_id9038972\n"
"help.text"
-msgid "Set the light sources for the 3D view."
-msgstr "Set the light sources for the 3D view."
+msgid "<ahelp hid=\".\">Set the light sources for the 3D view.</ahelp>"
+msgstr ""
#: three_d_view.xhp
msgctxt ""
@@ -7091,30 +7091,6 @@ msgstr "Grids"
#: wiz_chart_elements.xhp
msgctxt ""
"wiz_chart_elements.xhp\n"
-"par_id6737876\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the x-axis.</ahelp>"
-
-#: wiz_chart_elements.xhp
-msgctxt ""
-"wiz_chart_elements.xhp\n"
-"par_id1058992\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the y-axis.</ahelp>"
-
-#: wiz_chart_elements.xhp
-msgctxt ""
-"wiz_chart_elements.xhp\n"
-"par_id7366557\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Displays grid lines that are perpendicular to the z-axis. This option is only available for three-dimensional charts.</ahelp>"
-
-#: wiz_chart_elements.xhp
-msgctxt ""
-"wiz_chart_elements.xhp\n"
"par_id6527298\n"
"help.text"
msgid "The visible grid lines can help to estimate the data values in the chart."
diff --git a/source/en-ZA/helpcontent2/source/text/shared.po b/source/en-ZA/helpcontent2/source/text/shared.po
index 7f145688c23..717ea8e2252 100644
--- a/source/en-ZA/helpcontent2/source/text/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-04-16 22:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10571\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
-msgstr "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
+msgid "Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object."
+msgstr ""
#: fontwork_toolbar.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 14dbf510ccf..b9df8303fe0 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-24 08:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6517,7 +6517,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3153336\n"
"help.text"
-msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record Changes</emph></variable>"
+msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph></variable>"
msgstr ""
#: 00000402.xhp
@@ -6525,7 +6525,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3150594\n"
"help.text"
-msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show Changes</emph></caseinline></switchinline></variable>"
+msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show</emph></caseinline></switchinline></variable>"
msgstr ""
#: 00000402.xhp
@@ -6533,7 +6533,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3153845\n"
"help.text"
-msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage Changes</emph></variable>"
+msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph></variable>"
msgstr ""
#: 00000402.xhp
@@ -6541,7 +6541,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3148587\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab"
+msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab"
msgstr ""
#: 00000402.xhp
@@ -6557,7 +6557,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3153878\n"
"help.text"
-msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage Changes - Filter</emph> tab </variable>"
+msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab</variable>"
msgstr ""
#: 00000402.xhp
@@ -6581,7 +6581,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3148773\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Comment on Change</emph>"
+msgid "Choose <emph>Edit - Track Changes - Comment</emph>"
msgstr ""
#: 00000402.xhp
@@ -6589,7 +6589,7 @@ msgctxt ""
"00000402.xhp\n"
"par_id3149488\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Manage Changes - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
+msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
msgstr ""
#: 00000402.xhp
@@ -7149,8 +7149,16 @@ msgctxt ""
"00000404.xhp\n"
"par_idN107CD\n"
"help.text"
-msgid "<variable id=\"moviesound\">Choose <emph>Insert - Media - Audio or Video</emph></variable>"
-msgstr "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
+msgid "<variable id=\"moviesound\">Choose <emph>Insert - Media - Audio or Video</emph>.</variable>"
+msgstr ""
+
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN107CE\n"
+"help.text"
+msgid "<variable id=\"moviesound2\">Choose <emph>Insert - Audio or Video</emph></variable>"
+msgstr ""
#: 00000404.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 3e42dea3eae..58e9f30f525 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-07-05 21:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1717,7 +1717,7 @@ msgctxt ""
"01020000.xhp\n"
"par_id3151191\n"
"help.text"
-msgid "<variable id=\"oeffnentext\"><ahelp hid=\"fpicker/ui/explorerfiledialog/ExplorerFileDialog\">Opens, opens a remote file or imports a file.</ahelp> </variable>"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\".\">Opens a local or remote file, or imports one.</ahelp></variable>"
msgstr ""
#: 01020000.xhp
@@ -2349,8 +2349,8 @@ msgctxt ""
"01070000.xhp\n"
"par_id3146856\n"
"help.text"
-msgid "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
-msgstr "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
+msgid "<variable id=\"speichernuntertext\"><ahelp hid=\".\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
+msgstr ""
#: 01070000.xhp
msgctxt ""
@@ -3373,7 +3373,7 @@ msgctxt ""
"01100600.xhp\n"
"par_idN106B8\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Track Changes - Record Changes</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Track Changes - Record</emph>.</ahelp>"
msgstr ""
#: 01100600.xhp
@@ -5157,8 +5157,8 @@ msgctxt ""
"02010000.xhp\n"
"par_id3149205\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
+msgid "<ahelp hid=\".\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -5253,8 +5253,8 @@ msgctxt ""
"02020000.xhp\n"
"par_id3157898\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/imapdialog/TBI_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/imapdialog/TBI_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
+msgid "<ahelp hid=\".\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
+msgstr ""
#: 02030000.xhp
msgctxt ""
@@ -9981,16 +9981,16 @@ msgctxt ""
"02230000.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\">Manage Changes</link>"
-msgstr "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Changes</link>"
+msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Manage\">Manage</link>"
+msgstr ""
#: 02230000.xhp
msgctxt ""
"02230000.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment on Change\">Comment on Change</link>"
-msgstr "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
+msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
+msgstr ""
#: 02230100.xhp
msgctxt ""
@@ -10013,15 +10013,15 @@ msgctxt ""
"02230100.xhp\n"
"par_id3155599\n"
"help.text"
-msgid "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
-msgstr "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
+msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date. </ahelp>"
+msgstr ""
#: 02230100.xhp
msgctxt ""
"02230100.xhp\n"
"par_id3155934\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - Show Changes</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Edit - Track Changes - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
#: 02230100.xhp
@@ -10213,8 +10213,8 @@ msgctxt ""
"02230200.xhp\n"
"par_id3153323\n"
"help.text"
-msgid "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
-msgstr "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
+msgid "<variable id=\"text\"><ahelp hid=\".\">Shows or hides recorded changes.</ahelp></variable>"
+msgstr ""
#: 02230200.xhp
msgctxt ""
@@ -10309,8 +10309,8 @@ msgctxt ""
"02230300.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\"cui/ui/comment/edit\">Enter a comment for the recorded change.</ahelp></variable>"
-msgstr "<variable id=\"kommentartext\"><ahelp hid=\"cui/ui/comment/edit\">Enter a comment for the recorded change.</ahelp></variable>"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp></variable>"
+msgstr ""
#: 02230300.xhp
msgctxt ""
@@ -10349,8 +10349,8 @@ msgctxt ""
"02230400.xhp\n"
"par_id3147240\n"
"help.text"
-msgid "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
-msgstr "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
+msgid "<variable id=\"redlining\"><ahelp hid=\".\">Accept or reject recorded changes.</ahelp></variable>"
+msgstr ""
#: 02230401.xhp
msgctxt ""
@@ -10613,8 +10613,8 @@ msgctxt ""
"02230401.xhp\n"
"par_id3152935\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgid "<ahelp hid=\".\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgstr ""
#: 02230401.xhp
msgctxt ""
@@ -10629,8 +10629,8 @@ msgctxt ""
"02230401.xhp\n"
"par_id3150441\n"
"help.text"
-msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/reject\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/reject\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgid "<ahelp hid=\".\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgstr ""
#: 02230401.xhp
msgctxt ""
@@ -12917,8 +12917,8 @@ msgctxt ""
"05010000.xhp\n"
"par_id3145829\n"
"help.text"
-msgid "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
+msgid "<ahelp hid=\".\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
+msgstr ""
#: 05010000.xhp
msgctxt ""
@@ -13277,8 +13277,8 @@ msgctxt ""
"05020200.xhp\n"
"par_id3144766\n"
"help.text"
-msgid "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
-msgstr "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font colour to the selected characters. You can also click here, and then drag a selection to change the text colour. Click the arrow next to the icon to open the Font colour toolbar.</variable></ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
+msgstr ""
#: 05020200.xhp
msgctxt ""
@@ -13437,8 +13437,8 @@ msgctxt ""
"05020200.xhp\n"
"par_idN10B85\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
-msgstr "<ahelp hid=\"svx:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_CHARHIDDEN\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
+msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Formatting Marks</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
+msgstr ""
#: 05020200.xhp
msgctxt ""
@@ -14629,7 +14629,7 @@ msgctxt ""
"05020301.xhp\n"
"par_id3147534\n"
"help.text"
-msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
+msgid "Era, abbreviation. On the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
msgstr ""
#: 05020301.xhp
@@ -14653,7 +14653,7 @@ msgctxt ""
"05020301.xhp\n"
"par_id3147344\n"
"help.text"
-msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgid "Number of the year within an era, short format"
msgstr ""
#: 05020301.xhp
@@ -14661,7 +14661,7 @@ msgctxt ""
"05020301.xhp\n"
"par_id3148487\n"
"help.text"
-msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgid "Number of the year within an era, long format"
msgstr ""
#: 05020301.xhp
@@ -17573,8 +17573,8 @@ msgctxt ""
"05020500.xhp\n"
"par_id3146974\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/kerningsb\">Specifies the spacing between the characters of the selected text. Enter the amount by which you want to expand or condense the text in the spin button.</ahelp>"
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_CHAR_POSITION_LB_KERNING2\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the spacing between the characters of the selected text.</ahelp> Enter the amount by which you want to expand or condense the text in the spin button."
+msgstr ""
#: 05020500.xhp
msgctxt ""
@@ -17845,8 +17845,8 @@ msgctxt ""
"05030000.xhp\n"
"par_id3148668\n"
"help.text"
-msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
-msgstr "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
+msgid "<variable id=\"absatztext\"><ahelp hid=\".\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
+msgstr ""
#: 05030000.xhp
msgctxt ""
@@ -22253,8 +22253,8 @@ msgctxt ""
"05120000.xhp\n"
"par_id3153514\n"
"help.text"
-msgid "Specify the amount of space to leave between lines of text in a paragraph."
-msgstr "Specify the amount of space to leave between lines of text in a paragraph."
+msgid "<ahelp hid=\".\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
+msgstr ""
#: 05120000.xhp
msgctxt ""
@@ -29765,8 +29765,8 @@ msgctxt ""
"06010000.xhp\n"
"par_id3154682\n"
"help.text"
-msgid "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
-msgstr "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialogue also checks for grammar errors.</ahelp></variable>"
+msgid "<variable id=\"recht\"><ahelp hid=\".\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
+msgstr ""
#: 06010000.xhp
msgctxt ""
@@ -30829,8 +30829,8 @@ msgctxt ""
"06040000.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
-msgstr "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
+msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
+msgstr ""
#: 06040000.xhp
msgctxt ""
@@ -32341,8 +32341,8 @@ msgctxt ""
"06050000.xhp\n"
"par_id3150146\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
-msgstr "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
+msgstr ""
#: 06050000.xhp
msgctxt ""
@@ -38717,7 +38717,7 @@ msgctxt ""
"moviesound.xhp\n"
"par_idN1068E\n"
"help.text"
-msgid "Choose <emph>Insert - Media - Audio or Video</emph>."
+msgid "Choose <emph>Insert - Media - Audio or Video</emph>. For %PRODUCTNAME Impress, choose <emph>Insert - Audio or video</emph>."
msgstr ""
#: moviesound.xhp
@@ -38816,6 +38816,78 @@ msgctxt ""
msgid "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
msgstr "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"hd_id281511208172156\n"
+"help.text"
+msgid "Supported media formats"
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id971511208248862\n"
+"help.text"
+msgid "%PRODUCTNAME relies on the operating system's installed media support."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id231511209745892\n"
+"help.text"
+msgid "<emph>For Microsoft Windows</emph>: %PRODUCTNAME can open anything for which <emph>DirectShow</emph> filters are installed (<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">list of default formats</link>)."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id601511209768414\n"
+"help.text"
+msgid "<emph>For GNU/Linux</emph>: %PRODUCTNAME uses <emph>gstreamer</emph>, so whatever you can play using gstreamer can be used with %PRODUCTNAME (<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">list of defined types</link>)."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id841511209784505\n"
+"help.text"
+msgid "<emph>For Apple macOS</emph>: %PRODUCTNAME uses <emph>QuickTime</emph> supported media formats (<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">list of media formats</link>)."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id391511209364018\n"
+"help.text"
+msgid "<link href=\"http://msdn.microsoft.com/en-us/library/ms787745%28VS.85%29.aspx\" name=\"linkname\">List of default formats for Microsoft Windows DirectShow </link>."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id921511209448360\n"
+"help.text"
+msgid "<link href=\"http://gstreamer.freedesktop.org/data/doc/gstreamer/head/pwg/html/section-types-definitions.html\" name=\"linkname\">List of defined types for gstreamer in GNU/Linux </link>."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id591511209548848\n"
+"help.text"
+msgid "<link href=\"https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=103%26section=4%26tasks=true\" name=\"linkname\">List of media formats for Apple macOS QuickTime</link>."
+msgstr ""
+
+#: moviesound.xhp
+msgctxt ""
+"moviesound.xhp\n"
+"par_id561511210645479\n"
+"help.text"
+msgid "<link href=\"https://ask.libreoffice.org/en/question/854/what-video-formats-does-libreoffice-impress-support/\" name=\"linkname\">%PRODUCTNAME Askbot question and answer</link>"
+msgstr ""
+
#: notebook_bar.xhp
msgctxt ""
"notebook_bar.xhp\n"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/02.po b/source/en-ZA/helpcontent2/source/text/shared/02.po
index 7226bb7384a..06c6500a5ab 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/02.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-24 09:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9509,8 +9509,8 @@ msgctxt ""
"02010000.xhp\n"
"par_id3155351\n"
"help.text"
-msgid "<ahelp hid=\".uno:StyleApply\">Assigns a style to the current paragraph, selected paragraphs, or to a selected object.</ahelp>"
-msgstr "<ahelp hid=\".uno:StyleApply\">Assigns a style to the current paragraph, selected paragraphs, or to a selected object.</ahelp>"
+msgid "<ahelp hid=\".\">Assigns a style to the current paragraph, selected paragraphs, or to a selected object.</ahelp>"
+msgstr ""
#: 02010000.xhp
msgctxt ""
@@ -11277,8 +11277,8 @@ msgctxt ""
"09070000.xhp\n"
"par_id3156183\n"
"help.text"
-msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".uno:EditHyperlink\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
-msgstr "<variable id=\"hyperdiatext\"><ahelp hid=\".uno:EditHyperlink\">Opens a dialogue that enables you to create and edit hyperlinks.</ahelp></variable>"
+msgid "<variable id=\"hyperdiatext\"><ahelp hid=\".\">Opens a dialog that enables you to create and edit hyperlinks.</ahelp></variable>"
+msgstr ""
#: 09070000.xhp
msgctxt ""
@@ -17173,8 +17173,8 @@ msgctxt ""
"fontwork.xhp\n"
"par_idN10595\n"
"help.text"
-msgid "<ahelp hid=\".\">The Fontwork Gallery displays previews of Fontwork objects. To insert an object into your document, select the object, and then click OK.</ahelp>"
-msgstr "<ahelp hid=\".\">The Fontwork Gallery displays previews of Fontwork objects. To insert an object into your document, select the object, and then click OK.</ahelp>"
+msgid "The Fontwork Gallery displays previews of Fontwork objects. To insert an object into your document, select the object, and then click OK."
+msgstr ""
#: fontwork.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/05.po b/source/en-ZA/helpcontent2/source/text/shared/05.po
index defc3c7fc4a..d2af99fd62c 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/05.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/05.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-30 09:54+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-04-16 22:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -69,8 +69,8 @@ msgctxt ""
"00000001.xhp\n"
"par_id1318380\n"
"help.text"
-msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. You can find help and support in English language on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
-msgstr "The %PRODUCTNAME localisation projects offer support pages in local languages. Find an overview of the native language projects at <link href=\"http://www.libreoffice.org/international-sites/\">http://www.libreoffice.org/international-sites/</link>. You can find help and support in English language on the %PRODUCTNAME website at <link href=\"http://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
+msgid "The %PRODUCTNAME localization projects offer support pages in local languages. Find an overview of the native language projects at <link href=\"https://www.libreoffice.org/community/nlc/\">www.libreoffice.org/community/nlc/</link>. You can find help and support in English language on the %PRODUCTNAME website at <link href=\"https://www.libreoffice.org/get-help/\">www.libreoffice.org</link>."
+msgstr ""
#: 00000001.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/autopi.po b/source/en-ZA/helpcontent2/source/text/shared/autopi.po
index 4ef5bb7e2bd..7822b9b95f5 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/autopi.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/autopi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-09 16:45+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-24 09:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2429,8 +2429,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3150445\n"
"help.text"
-msgid "<ahelp hid=\".\">On this page of the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form.</ahelp>"
-msgstr "<ahelp hid=\".\">On this page of the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form.</ahelp>"
+msgid "On this page of the <link href=\"text/shared/autopi/01090000.xhp\">Form Wizard</link>, you can specify the table or query that you need to create the form as well as the fields that you want to include in the form."
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2445,8 +2445,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3147399\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_LBTABLES\">Specifies the table or query that you want to create the form for.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_LBTABLES\">Specifies the table or query that you want to create the form for.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the table or query that you want to create the form for.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2461,8 +2461,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
-msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
+msgid "<ahelp hid=\".\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2477,8 +2477,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3148538\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
+msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2493,8 +2493,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3145121\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
+msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2509,8 +2509,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3149763\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
+msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2525,8 +2525,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3156329\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
+msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2573,8 +2573,8 @@ msgctxt ""
"01090100.xhp\n"
"par_id3156194\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_FIELDSSELECTED\">Displays the fields that are in the new form.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSSELECTED\">Displays the fields that are in the new form.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the fields that are in the new form.</ahelp>"
+msgstr ""
#: 01090100.xhp
msgctxt ""
@@ -2949,8 +2949,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3151210\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDALIGNLEFT\">The labels are left-aligned.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDALIGNLEFT\">The labels are left-aligned.</ahelp>"
+msgid "<ahelp hid=\".\">The labels are left-aligned.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -2965,8 +2965,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3148672\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDALIGNRIGHT\">The labels are right-aligned.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDALIGNRIGHT\">The labels are right-aligned.</ahelp>"
+msgid "<ahelp hid=\".\">The labels are right-aligned.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -2989,8 +2989,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3149388\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDLEFTLABELED\">Aligns the database fields column-wise with the labels to the left of the fields.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDLEFTLABELED\">Aligns the database fields column-wise with the labels to the left of the fields.</ahelp>"
+msgid "<ahelp hid=\".\">Aligns the database fields column-wise with the labels to the left of the fields.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -3005,8 +3005,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDTOPLABELED\">Aligns the database fields column-wise with the labels above the field.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDTOPLABELED\">Aligns the database fields column-wise with the labels above the field.</ahelp>"
+msgid "<ahelp hid=\".\">Aligns the database fields column-wise with the labels above the field.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -3021,8 +3021,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3153824\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDTABLESTYLE\">Aligns the database fields in a tabular form.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDTABLESTYLE\">Aligns the database fields in a tabular form.</ahelp>"
+msgid "<ahelp hid=\".\">Aligns the database fields in a tabular form.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -3037,8 +3037,8 @@ msgctxt ""
"01090300.xhp\n"
"par_id3155421\n"
"help.text"
-msgid "<ahelp hid=\"HID_DLGFORM_CMDTOPJUSTIFIED\">Arranges the labels above the corresponding data.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGFORM_CMDTOPJUSTIFIED\">Arranges the labels above the corresponding data.</ahelp>"
+msgid "<ahelp hid=\".\">Arranges the labels above the corresponding data.</ahelp>"
+msgstr ""
#: 01090300.xhp
msgctxt ""
@@ -3285,8 +3285,8 @@ msgctxt ""
"01090500.xhp\n"
"par_idN10561\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the field border style.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifies the field border style.</ahelp>"
+msgid "Specifies the field border style."
+msgstr ""
#: 01090500.xhp
msgctxt ""
@@ -3365,8 +3365,8 @@ msgctxt ""
"01090600.xhp\n"
"par_idN10553\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the name of the form and how to proceed.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifies the name of the form and how to proceed.</ahelp>"
+msgid "Specifies the name of the form and how to proceed."
+msgstr ""
#: 01090600.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/guide.po b/source/en-ZA/helpcontent2/source/text/shared/guide.po
index e08f6526aae..8f5780d85c2 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-07-05 21:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13317,7 +13317,7 @@ msgctxt ""
"microsoft_terms.xhp\n"
"par_id3147048\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Track Changes - Show Changes\">Track Changes - Show Changes</link>"
+msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Track Changes - Show\">Track Changes - Show</link>"
msgstr ""
#: microsoft_terms.xhp
@@ -15429,7 +15429,7 @@ msgctxt ""
"protection.xhp\n"
"par_id3153104\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Protect Changes</emph>. Enter and confirm a password of at least one character."
+msgid "Choose <emph>Edit - Track Changes - Protect</emph>. Enter and confirm a password of at least one character."
msgstr ""
#: protection.xhp
@@ -15445,7 +15445,7 @@ msgctxt ""
"protection.xhp\n"
"par_id3152920\n"
"help.text"
-msgid "Choose <emph>Edit - Track Changes - Protect Changes</emph>. Enter the correct password."
+msgid "Choose <emph>Edit - Track Changes - Protect</emph>. Enter the correct password."
msgstr ""
#: protection.xhp
@@ -15693,7 +15693,7 @@ msgctxt ""
"redlining_accept.xhp\n"
"par_id3153748\n"
"help.text"
-msgid "Open the document and choose <emph>Edit - Track Changes - Manage Changes</emph>. The <emph>Manage Changes</emph> dialog appears."
+msgid "Open the document and choose <emph>Edit - Track Changes - Manage</emph>. The <emph>Manage Changes</emph> dialog appears."
msgstr ""
#: redlining_accept.xhp
@@ -15773,8 +15773,8 @@ msgctxt ""
"redlining_doccompare.xhp\n"
"par_id9948423\n"
"help.text"
-msgid "Normally, the reviewers enable change tracking by <emph>Edit - Track Changes - Record Changes</emph> and you can easily see the changes."
-msgstr "Normally, the reviewers enable change tracking by <emph>Edit - Changes - Record</emph> and you can easily see the changes."
+msgid "Normally, the reviewers enable change tracking by <emph>Edit - Track Changes - Record</emph> and you can easily see the changes."
+msgstr ""
#: redlining_doccompare.xhp
msgctxt ""
@@ -15957,7 +15957,7 @@ msgctxt ""
"redlining_enter.xhp\n"
"par_id3149095\n"
"help.text"
-msgid "To start recording changes, open the document to be edited and choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes</emph></link> and then choose <emph>Record Changes</emph>."
+msgid "To start recording changes, open the document to be edited and choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes</emph></link> and then choose <emph>Record</emph>."
msgstr ""
#: redlining_enter.xhp
@@ -16005,7 +16005,7 @@ msgctxt ""
"redlining_enter.xhp\n"
"par_id3148473\n"
"help.text"
-msgid "You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Track Changes - Comment on Change</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog."
+msgid "You can enter a comment on each recorded change by placing the cursor in the area of the change and then choosing <emph>Edit - Track Changes - Comment</emph>. In addition to Extended Tips, the comment is also displayed in the list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Manage Changes\"><emph>Manage Changes</emph></link> dialog."
msgstr ""
#: redlining_enter.xhp
@@ -16013,7 +16013,7 @@ msgctxt ""
"redlining_enter.xhp\n"
"par_id3153542\n"
"help.text"
-msgid "To stop recording changes, choose <emph>Edit - Track Changes - Record Changes</emph> again. The check mark is removed and you can now save the document."
+msgid "To stop recording changes, choose <emph>Edit - Track Changes - Record</emph> again. The check mark is removed and you can now save the document."
msgstr ""
#: redlining_enter.xhp
@@ -16077,7 +16077,7 @@ msgctxt ""
"redlining_navigation.xhp\n"
"par_id3153883\n"
"help.text"
-msgid "<emph>Edit - Track Changes - Next Change</emph>: <ahelp hid=\".uno:NextTrackedChange\">Jumps to and selects the next change in the document, if any.</ahelp>"
+msgid "<emph>Edit - Track Changes - Next</emph>: <ahelp hid=\".uno:NextTrackedChange\">Jumps to and selects the next change in the document, if any.</ahelp>"
msgstr ""
#: redlining_navigation.xhp
@@ -16085,7 +16085,7 @@ msgctxt ""
"redlining_navigation.xhp\n"
"par_id3153884\n"
"help.text"
-msgid "<emph>Edit - Track Changes - Previous Change</emph>: <ahelp hid=\".uno:PreviousTrackedChange\">Jumps to and selects the previous change in the document, if any.</ahelp>"
+msgid "<emph>Edit - Track Changes - Previous</emph>: <ahelp hid=\".uno:PreviousTrackedChange\">Jumps to and selects the previous change in the document, if any.</ahelp>"
msgstr ""
#: redlining_navigation.xhp
@@ -16093,7 +16093,7 @@ msgctxt ""
"redlining_navigation.xhp\n"
"par_id3153885\n"
"help.text"
-msgid "Using these commands in conjunction with the <emph>Accept Change</emph> and <emph>Reject Change</emph> commands allows navigating, accepting and rejecting changes without invoking the <emph>Edit - Track Changes - Manage Changes</emph> dialog."
+msgid "Using these commands in conjunction with the <emph>Accept</emph> and <emph>Reject</emph> commands allows navigating, accepting and rejecting changes without invoking the <emph>Edit - Track Changes - Manage</emph> dialog."
msgstr ""
#: redlining_protect.xhp
@@ -16133,7 +16133,7 @@ msgctxt ""
"redlining_protect.xhp\n"
"par_id3154751\n"
"help.text"
-msgid "To protect the changes made in a document during editing, choose <emph>Edit - Track Changes - Protect Changes</emph>. To turn off the function or to accept or reject changes it is necessary to enter the correct password first."
+msgid "To protect the changes made in a document during editing, choose <emph>Edit - Track Changes - Protect</emph>. To turn off the function or to accept or reject changes it is necessary to enter the correct password first."
msgstr ""
#: redlining_protect.xhp
@@ -16141,7 +16141,7 @@ msgctxt ""
"redlining_protect.xhp\n"
"par_id3147088\n"
"help.text"
-msgid "Choose <emph>Protect Changes</emph>. This opens the <link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\"><emph>Password</emph></link> dialog."
+msgid "Choose <emph>Protect</emph>. This opens the <link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\"><emph>Password</emph></link> dialog."
msgstr ""
#: redlining_protect.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 5feb75819f9..18e43aed245 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-07-05 22:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1645,15 +1645,15 @@ msgctxt ""
"01010400.xhp\n"
"hd_id3155175\n"
"help.text"
-msgid "Suggestion"
-msgstr "Suggestion"
+msgid "Replace By or Grammar By"
+msgstr ""
#: 01010400.xhp
msgctxt ""
"01010400.xhp\n"
"par_id3147323\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/editdictionarydialog/replace\">This input field is only available if you are editing an exception dictionary. The field shows the alternative suggestion for the current word in the \"Word\" text box.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/editdictionarydialog/replace\">This input field is only available if you are editing an exception dictionary or a language-dependent custom dictionary. In exception dictionaries, the field shows the alternative suggestion for the current word in the \"Word\" text box. In language-dependent custom dictionaries, the field contains a known root word, as a model of affixation of the new word or its usage in compound words. For example, in a German custom dictionary, the new word “Litschi” (lychee) with the model word “Gummi” (gum) will result recognition of “Litschis” (lychees), “Litschibaum” (lychee tree), “Litschifrucht” (lychee fruit) etc.</ahelp>"
msgstr ""
#: 01010400.xhp
@@ -6229,8 +6229,8 @@ msgctxt ""
"01040600.xhp\n"
"bm_id3144510\n"
"help.text"
-msgid "<bookmark_value>non-printing characters (Writer)</bookmark_value><bookmark_value>displaying; non-printing characters (Writer)</bookmark_value><bookmark_value>paragraph marks; displaying (Writer)</bookmark_value><bookmark_value>characters; displaying only on screen (Writer)</bookmark_value><bookmark_value>optional hyphens (Writer)</bookmark_value><bookmark_value>soft hyphens (Writer)</bookmark_value><bookmark_value>hyphens; displaying custom (Writer)</bookmark_value><bookmark_value>custom hyphens (Writer)</bookmark_value><bookmark_value>spaces; displaying (Writer)</bookmark_value><bookmark_value>spaces; showing protected spaces (Writer)</bookmark_value><bookmark_value>protected spaces; showing (Writer)</bookmark_value><bookmark_value>non-breaking spaces (Writer)</bookmark_value><bookmark_value>tab stops; displaying (Writer)</bookmark_value><bookmark_value>break display (Writer)</bookmark_value><bookmark_value>hidden text;showing (Writer)</bookmark_value><bookmark_value>hidden fields display (Writer)</bookmark_value><bookmark_value>paragraphs; hidden paragraphs (Writer)</bookmark_value><bookmark_value>cursor; allowing in protected areas (Writer)</bookmark_value>"
-msgstr "<bookmark_value>non-printing characters (Writer)</bookmark_value><bookmark_value>displaying; non-printing characters (Writer)</bookmark_value><bookmark_value>paragraph marks; displaying (Writer)</bookmark_value><bookmark_value>characters; displaying only on screen (Writer)</bookmark_value><bookmark_value>optional hyphens (Writer)</bookmark_value><bookmark_value>hyphens; displaying custom (Writer)</bookmark_value><bookmark_value>custom hyphens (Writer)</bookmark_value><bookmark_value>spaces; displaying (Writer)</bookmark_value><bookmark_value>spaces; showing protected spaces (Writer)</bookmark_value><bookmark_value>protected spaces; showing (Writer)</bookmark_value><bookmark_value>non-breaking spaces (Writer)</bookmark_value><bookmark_value>tab stops; displaying (Writer)</bookmark_value><bookmark_value>break display (Writer)</bookmark_value><bookmark_value>hidden text;showing (Writer)</bookmark_value><bookmark_value>hidden fields display (Writer)</bookmark_value><bookmark_value>paragraphs; hidden paragraphs (Writer)</bookmark_value><bookmark_value>cursor; allowing in protected areas (Writer)</bookmark_value>"
+msgid "<bookmark_value>non-printing characters (Writer)</bookmark_value><bookmark_value>formatting marks (Writer)</bookmark_value><bookmark_value>displaying; non-printing characters (Writer)</bookmark_value><bookmark_value>displaying; formatting marks (Writer)</bookmark_value><bookmark_value>paragraph marks; displaying (Writer)</bookmark_value><bookmark_value>characters; displaying only on screen (Writer)</bookmark_value><bookmark_value>optional hyphens (Writer)</bookmark_value><bookmark_value>soft hyphens (Writer)</bookmark_value><bookmark_value>hyphens; displaying custom (Writer)</bookmark_value><bookmark_value>custom hyphens (Writer)</bookmark_value><bookmark_value>spaces; displaying (Writer)</bookmark_value><bookmark_value>spaces; showing protected spaces (Writer)</bookmark_value><bookmark_value>protected spaces; showing (Writer)</bookmark_value><bookmark_value>non-breaking spaces (Writer)</bookmark_value><bookmark_value>tab stops; displaying (Writer)</bookmark_value><bookmark_value>break display (Writer)</bookmark_value><bookmark_value>hidden text;showing (Writer)</bookmark_value><bookmark_value>hidden fields display (Writer)</bookmark_value><bookmark_value>paragraphs; hidden paragraphs (Writer)</bookmark_value><bookmark_value>cursor; allowing in protected areas (Writer)</bookmark_value>"
+msgstr ""
#: 01040600.xhp
msgctxt ""
@@ -6261,8 +6261,8 @@ msgctxt ""
"01040600.xhp\n"
"par_id3156343\n"
"help.text"
-msgid "Defines which non-printing characters are visible on screen. Activate the <link href=\"text/swriter/01/03100000.xhp\" name=\"Non-printing Characters On/Off\"><emph>Non-printing Characters</emph></link> icon on the <emph>Standard</emph> bar. All characters that you have selected on the <emph>Formatting Aids</emph> tab page will be displayed."
-msgstr "Defines which non-printing characters are visible on screen. Activate the <link href=\"text/swriter/01/03100000.xhp\" name=\"Non-printing Characters On/Off\"><emph>Non-printing Characters</emph></link> icon on the <emph>Standard</emph> bar. All characters that you have selected on the <emph>Formatting Aids</emph> tab page will be displayed."
+msgid "Defines which formatting marks are visible on screen. Activate the <link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting marks On/Off\"><emph>Formatting Marks</emph></link> icon on the <emph>Standard</emph> bar. All characters that you have selected on the <emph>Formatting Aids</emph> tab page will be displayed."
+msgstr ""
#: 01040600.xhp
msgctxt ""
@@ -6373,7 +6373,7 @@ msgctxt ""
"01040600.xhp\n"
"par_idN108FB\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddentext\">Displays text that uses the character format \"hidden\", when <emph>View - Non-printing Characters</emph> is enabled.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/optformataidspage/hiddentext\">Displays text that uses the character format \"hidden\", when <emph>View - Formatting Marks</emph> is enabled.</ahelp>"
msgstr ""
#: 01040600.xhp
@@ -6573,8 +6573,8 @@ msgctxt ""
"01040700.xhp\n"
"par_id3156153\n"
"help.text"
-msgid "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes - Record Changes</emph></link> or <emph>Edit - Track Changes - Show Changes</emph>."
-msgstr "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Changes\"><emph>Edit - Changes - Record</emph></link> or <emph>Edit - Changes - Show</emph>."
+msgid "To record or show changes in your text or spreadsheet document, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes\"><emph>Edit - Track Changes - Record</emph></link> or <emph>Edit - Track Changes - Show</emph>."
+msgstr ""
#: 01040700.xhp
msgctxt ""
@@ -7781,7 +7781,7 @@ msgctxt ""
"01050100.xhp\n"
"par_id3149516\n"
"help.text"
-msgid "<variable id=\"rastersicht\"><ahelp hid=\"svx/ui/optgridpage/gridvisible\">Specifies whether to display the grid.</ahelp></variable>"
+msgid "<variable id=\"rastersicht\"><ahelp hid=\".\">Specifies whether to display the grid.</ahelp></variable>"
msgstr ""
#: 01050100.xhp
@@ -9509,7 +9509,7 @@ msgctxt ""
"01060600.xhp\n"
"par_id3156343\n"
"help.text"
-msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record Changes\"><emph>Edit - Track Changes - Record Changes</emph></link>."
+msgid "To record changes to your work, choose <link href=\"text/shared/01/02230000.xhp\" name=\"Edit - Track Changes - Record\"><emph>Edit - Track Changes - Record</emph></link>."
msgstr ""
#: 01060600.xhp
@@ -10301,7 +10301,7 @@ msgctxt ""
"01070100.xhp\n"
"par_id3154147\n"
"help.text"
-msgid "<variable id=\"helplines\"><variable id=\"verschieb\"><ahelp hid=\"modules/simpress/ui/sdviewpage/dragstripes\">Specifies whether to display guides when moving an object.</ahelp></variable></variable>"
+msgid "<variable id=\"helplines\"><variable id=\"verschieb\"><ahelp hid=\".\">Specifies whether to display guides when moving an object.</ahelp></variable></variable>"
msgstr ""
#: 01070100.xhp
@@ -12053,7 +12053,7 @@ msgctxt ""
"01140000.xhp\n"
"par_id3145121\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date.</ahelp> Default locale dependent date acceptance patterns are generated build time, but it is possible to add more or modify them in this edit box."
+msgid "<ahelp hid=\".\">Specifies the date acceptance patterns for the current locale. Calc spreadsheet and Writer table cell input needs to match locale dependent date acceptance patterns before it is recognized as a valid date.</ahelp> Default locale dependent date acceptance patterns are generated during build time, but it is possible to add more or modify them in this edit box."
msgstr ""
#: 01140000.xhp
@@ -12069,7 +12069,7 @@ msgctxt ""
"01140000.xhp\n"
"par_id3157939\n"
"help.text"
-msgid "Syntax: <emph>Y</emph> means year, <emph>M</emph> means month, and <emph>D</emph> means day, regardless of localizaton."
+msgid "Syntax: <emph>Y</emph> means year, <emph>M</emph> means month, and <emph>D</emph> means day, regardless of localization."
msgstr ""
#: 01140000.xhp
@@ -12989,8 +12989,8 @@ msgctxt ""
"01160201.xhp\n"
"par_idN1053E\n"
"help.text"
-msgid "Creates or edits an entry in the <link href=\"text/shared/optionen/01160200.xhp\">Databases</link> tab page."
-msgstr "Creates or edits an entry in the <link href=\"text/shared/optionen/01160200.xhp\">Databases</link> tab page."
+msgid "<ahelp hid=\".\">Creates or edits an entry in the <link href=\"text/shared/optionen/01160200.xhp\">Databases</link> tab page.</ahelp>"
+msgstr ""
#: 01160201.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/simpress/guide.po b/source/en-ZA/helpcontent2/source/text/simpress/guide.po
index d87c4cd4a29..c760dba99bf 100644
--- a/source/en-ZA/helpcontent2/source/text/simpress/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/simpress/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-08 00:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3781,7 +3781,7 @@ msgctxt ""
"masterpage.xhp\n"
"par_id3154017\n"
"help.text"
-msgid "Every slide in a presentation has exactly one master slide, also known as master slide. A master slide determines the text formatting style for the title and outline and the background design for all slides that use this master slide."
+msgid "Every slide in a presentation has exactly one master slide, also known as master page. A master slide determines the text formatting style for the title and outline and the background design for all slides that use this master slide."
msgstr ""
#: masterpage.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/00.po b/source/en-ZA/helpcontent2/source/text/swriter/00.po
index 59897b4ca65..bb6379f46e2 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/00.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-24 09:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -405,8 +405,8 @@ msgctxt ""
"00000403.xhp\n"
"par_id3155625\n"
"help.text"
-msgid "Choose <emph>View - Non-printing Characters</emph>"
-msgstr "Choose <emph>View - Nonprinting Characters</emph>"
+msgid "Choose <emph>View - Formatting Marks</emph>"
+msgstr ""
#: 00000403.xhp
msgctxt ""
@@ -437,8 +437,8 @@ msgctxt ""
"00000403.xhp\n"
"par_id3153716\n"
"help.text"
-msgid "Non-printing Characters"
-msgstr "Nonprinting Characters"
+msgid "Formatting Marks"
+msgstr ""
#: 00000403.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index e3c9790d35e..c4dc84cc728 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-07-05 22:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3349,8 +3349,8 @@ msgctxt ""
"03080000.xhp\n"
"par_id3153540\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Non-printing Characters On/Off\">Non-printing Characters On/Off</link>"
-msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters On/Off\">Nonprinting Characters On/Off</link>"
+msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks On/Off\">Formatting Marks On/Off</link>"
+msgstr ""
#: 03090000.xhp
msgctxt ""
@@ -3405,16 +3405,16 @@ msgctxt ""
"03100000.xhp\n"
"tit\n"
"help.text"
-msgid "Non-printing Characters"
-msgstr "Nonprinting Characters"
+msgid "Formatting Marks"
+msgstr ""
#: 03100000.xhp
msgctxt ""
"03100000.xhp\n"
"hd_id3154507\n"
"help.text"
-msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Non-printing Characters\">Non-printing Characters</link>"
-msgstr "<link href=\"text/swriter/01/03100000.xhp\" name=\"Nonprinting Characters\">Nonprinting Characters</link>"
+msgid "<link href=\"text/swriter/01/03100000.xhp\" name=\"Formatting Marks\">Formatting Marks</link>"
+msgstr ""
#: 03100000.xhp
msgctxt ""
@@ -3437,8 +3437,8 @@ msgctxt ""
"03100000.xhp\n"
"par_id3147511\n"
"help.text"
-msgid "To specify which non-printing characters are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and then select the options that you want in the <emph>Display of</emph> area."
-msgstr "To specify which nonprinting characters are displayed, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\">%PRODUCTNAME Writer - Formatting Aids</link></emph>, and then select the options that you want in the <emph>Display of</emph> area."
+msgid "To specify which formatting marks are displayed, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\" name=\"Writer - Formatting Aids\"><emph>%PRODUCTNAME Writer - Formatting Aids</emph></link>, and then select the options that you want in the <emph>Display of</emph> area."
+msgstr ""
#: 03120000.xhp
msgctxt ""
@@ -20117,7 +20117,7 @@ msgctxt ""
"05140000.xhp\n"
"par_id3146333\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window.</ahelp>"
+msgid "<ahelp hid=\".\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window.</ahelp>"
msgstr ""
#: 05140000.xhp
@@ -26229,7 +26229,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id300920161443293374\n"
"help.text"
-msgid "Note: Using the Default (or any other) page style for your document, you can add a header or footer as you wish to the first page by deselecting the <item type=\"menuitem\">Same content on first page</item> option on the header/footer tabs in the <emph>Page Style</emph> dialog, and then adding the header or footer. You can then add a different header or footer to the other pages of the document."
+msgid "Using the Default (or any other) page style for your document, you can add a header or footer as you wish to the first page by deselecting the <item type=\"menuitem\">Same content on first page</item> option on the header/footer tabs in the <emph>Page Style</emph> dialog, and then adding the header or footer. You can then add a different header or footer to the other pages of the document."
msgstr ""
#: title_page.xhp
@@ -26277,7 +26277,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id300920161448355764\n"
"help.text"
-msgid "Note: By default, %PRODUCTNAME selects the <emph>First page</emph> page style."
+msgid "By default, %PRODUCTNAME selects the <emph>First Page</emph> page style."
msgstr ""
#: title_page.xhp
@@ -26301,7 +26301,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id300920161443314375\n"
"help.text"
-msgid "This will change the current page style to <emph>First page</emph> and the following pages will have the <emph>Default page</emph> style"
+msgid "This will change the current page style to <emph>First Page</emph> and the following pages will have the <emph>Default Style</emph>."
msgstr ""
#: title_page.xhp
@@ -26373,7 +26373,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id300920161443324067\n"
"help.text"
-msgid "This will insert a page break and change the current page style to <emph>First page</emph>. The following pages will have the default page style."
+msgid "This will insert a page break and change the current page style to <emph>First Page</emph>. The following pages will have the <emph>Default Style</emph> page style."
msgstr ""
#: title_page.xhp
@@ -26389,7 +26389,7 @@ msgctxt ""
"title_page.xhp\n"
"par_id30092016144332559\n"
"help.text"
-msgid "You cannot delete a title page. You must change its page style format from First page to whatever other page style you wish."
+msgid "You cannot delete a title page. You must change its page style format from <emph>First Page</emph> to whatever other page style you wish."
msgstr ""
#: title_page.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/02.po b/source/en-ZA/helpcontent2/source/text/swriter/02.po
index 1a68ea38140..6cab24e9705 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/02.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-05-12 14:35+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-05-24 10:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1165,8 +1165,8 @@ msgctxt ""
"14020000.xhp\n"
"par_id3143270\n"
"help.text"
-msgid "<ahelp hid=\"FN_FORMULA_CALC\">Opens a submenu, from which you can insert a formula into the cell of a table.</ahelp> Place the cursor in a cell in the table or at the position in the document where you want the result to appear. Click the<emph> Formula </emph>icon and choose the desired formula from the submenu."
-msgstr "<ahelp hid=\"FN_FORMULA_CALC\">Opens a submenu, from which you can insert a formula into the cell of a table.</ahelp> Place the cursor in a cell in the table or at the position in the document where you want the result to appear. Click the<emph> Formula </emph>icon and choose the desired formula from the submenu."
+msgid "<ahelp hid=\".\">Opens a submenu, from which you can insert a formula into the cell of a table.</ahelp> Place the cursor in a cell in the table or at the position in the document where you want the result to appear. Click the<emph> Formula </emph>icon and choose the desired formula from the submenu."
+msgstr ""
#: 14020000.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"14030000.xhp\n"
"par_id3149602\n"
"help.text"
-msgid "<ahelp hid=\"FN_FORMULA_CANCEL\">Clears the contents of the input line and closes the formula bar.</ahelp>"
-msgstr "<ahelp hid=\"FN_FORMULA_CANCEL\">Clears the contents of the input line and closes the formula bar.</ahelp>"
+msgid "<ahelp hid=\".\">Clears the contents of the input line and closes the formula bar.</ahelp>"
+msgstr ""
#: 14030000.xhp
msgctxt ""
@@ -2493,8 +2493,8 @@ msgctxt ""
"14040000.xhp\n"
"par_id3147173\n"
"help.text"
-msgid "<ahelp hid=\"FN_FORMULA_APPLY\" visibility=\"visible\">Transfers the contents of the input line into your document and closes the formula bar. The contents of the input line are inserted at the cursor position in the document.</ahelp>"
-msgstr "<ahelp hid=\"FN_FORMULA_APPLY\" visibility=\"visible\">Transfers the contents of the input line into your document and closes the formula bar. The contents of the input line are inserted at the cursor position in the document.</ahelp>"
+msgid "<ahelp hid=\".\">Transfers the contents of the input line into your document and closes the formula bar. The contents of the input line are inserted at the cursor position in the document.</ahelp>"
+msgstr ""
#: 14040000.xhp
msgctxt ""
@@ -2533,8 +2533,8 @@ msgctxt ""
"14050000.xhp\n"
"par_id3154501\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_EDIT_FORMULA\">Allows you to create a formula by typing it directly into the input line or by clicking the <emph>Formula</emph> icon to display the formulas in submenu.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_EDIT_FORMULA\">Allows you to create a formula by typing it directly into the input line or by clicking the <emph>Formula</emph> icon to display the formulae in submenu.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to create a formula by typing it directly into the input line or by clicking the <emph>Formula</emph> icon to display the formulas in submenu.</ahelp>"
+msgstr ""
#: 14050000.xhp
msgctxt ""
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po
index ab8174b1e7d..4627b0cd473 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-11-14 17:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -148,17 +148,17 @@ msgctxt ""
"..Common.Menus.New.m4\n"
"Title\n"
"value.text"
-msgid "Database"
-msgstr "Database"
+msgid "F~ormula"
+msgstr ""
#: Common.xcu
msgctxt ""
"Common.xcu\n"
-"..Common.Menus.New.m6\n"
+"..Common.Menus.New.m5\n"
"Title\n"
"value.text"
-msgid "~HTML Document"
-msgstr "~HTML Document"
+msgid "Database"
+msgstr ""
#: Common.xcu
msgctxt ""
@@ -166,8 +166,8 @@ msgctxt ""
"..Common.Menus.New.m7\n"
"Title\n"
"value.text"
-msgid "~XML Form Document"
-msgstr "~XML Form Document"
+msgid "~HTML Document"
+msgstr ""
#: Common.xcu
msgctxt ""
@@ -175,17 +175,17 @@ msgctxt ""
"..Common.Menus.New.m8\n"
"Title\n"
"value.text"
-msgid "M~aster Document"
-msgstr "M~aster Document"
+msgid "~XML Form Document"
+msgstr ""
#: Common.xcu
msgctxt ""
"Common.xcu\n"
-"..Common.Menus.New.m10\n"
+"..Common.Menus.New.m9\n"
"Title\n"
"value.text"
-msgid "F~ormula"
-msgstr "F~ormula"
+msgid "M~aster Document"
+msgstr ""
#: Common.xcu
msgctxt ""
@@ -10607,8 +10607,8 @@ msgctxt ""
"..TableWizard.TableWizard.private.Tables.authors.Fields.nationality\n"
"ShortName\n"
"value.text"
-msgid "Nationlity"
-msgstr "Nationlity"
+msgid "Nationality"
+msgstr ""
#: TableWizard.xcu
msgctxt ""
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index ea10e2aad54..7696779f5c6 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: 2016-12-21 22:12+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16987,16 +16987,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:OpenRemote\n"
"Label\n"
"value.text"
-msgid "Open Remote"
-msgstr ""
-
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:OpenRemote\n"
-"ContextLabel\n"
-"value.text"
-msgid "Open Remote ~File..."
+msgid "Open ~Remote..."
msgstr ""
#: GenericCommands.xcu
@@ -17011,19 +17002,19 @@ msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n"
-"Label\n"
+"..GenericCommands.UserInterface.Commands..uno:OpenRemote\n"
+"PopupLabel\n"
"value.text"
-msgid "Save Remote"
+msgid "Open ~Remote File..."
msgstr ""
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n"
-"ContextLabel\n"
+"Label\n"
"value.text"
-msgid "Sa~ve Remote File..."
+msgid "Sa~ve Remote..."
msgstr ""
#: GenericCommands.xcu
@@ -17041,7 +17032,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:SaveAsRemote\n"
"PopupLabel\n"
"value.text"
-msgid "Save Remote File..."
+msgid "Save ~Remote File..."
msgstr ""
#: GenericCommands.xcu
@@ -17759,7 +17750,7 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:DesignerDialog\n"
"ContextLabel\n"
"value.text"
-msgid "St~yles"
+msgid "Manage St~yles"
msgstr ""
#: GenericCommands.xcu
@@ -21080,8 +21071,8 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:Label\n"
"Label\n"
"value.text"
-msgid "Label Field"
-msgstr "Label Field"
+msgid "Label"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -21722,8 +21713,26 @@ msgctxt ""
"..GenericCommands.UserInterface.Commands..uno:UseWizards\n"
"Label\n"
"value.text"
-msgid "Wizards On/Off"
-msgstr "Wizards On/Off"
+msgid "Form Control Wizards"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:UseWizards\n"
+"ContextLabel\n"
+"value.text"
+msgid "Control Wizards"
+msgstr ""
+
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:UseWizards\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Toggle Form Control Wizards"
+msgstr ""
#: GenericCommands.xcu
msgctxt ""
@@ -24126,6 +24135,15 @@ msgstr ""
#: Notebookbar.xcu
msgctxt ""
"Notebookbar.xcu\n"
+"..Notebookbar.Applications.Writer.Implementations.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: Notebookbar.xcu
+msgctxt ""
+"Notebookbar.xcu\n"
"..Notebookbar.Applications.Writer.Implementations.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -24213,6 +24231,24 @@ msgctxt ""
msgid "Contextual groups"
msgstr ""
+#: Notebookbar.xcu
+msgctxt ""
+"Notebookbar.xcu\n"
+"..Notebookbar.Applications.Impress.Implementations.GroupedbarCompact\n"
+"Label\n"
+"value.text"
+msgid "Groupedbar Compact"
+msgstr ""
+
+#: Notebookbar.xcu
+msgctxt ""
+"Notebookbar.xcu\n"
+"..Notebookbar.Applications.Impress.Implementations.GroupedbarFull\n"
+"Label\n"
+"value.text"
+msgid "Groupedbar Full"
+msgstr ""
+
#: ReportCommands.xcu
msgctxt ""
"ReportCommands.xcu\n"
@@ -25942,6 +25978,33 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:RejectAllTrackedChanges\n"
+"Label\n"
+"value.text"
+msgid "Reject All"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:RejectAllTrackedChanges\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:RejectAllTrackedChanges\n"
+"PopupLabel\n"
+"value.text"
+msgid "Reject All Changes"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:AcceptTrackedChange\n"
"Label\n"
"value.text"
@@ -25969,6 +26032,33 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:AcceptAllTrackedChanges\n"
+"Label\n"
+"value.text"
+msgid "Accept All"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:AcceptAllTrackedChanges\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:AcceptAllTrackedChanges\n"
+"PopupLabel\n"
+"value.text"
+msgid "Accept All Changes"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NextTrackedChange\n"
"Label\n"
"value.text"
@@ -27092,6 +27182,15 @@ msgstr ""
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:RotateReset\n"
+"Label\n"
+"value.text"
+msgid "Reset R~otation"
+msgstr ""
+
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NewHtmlDoc\n"
"Label\n"
"value.text"
@@ -30426,6 +30525,15 @@ msgctxt ""
msgid "Watermark..."
msgstr ""
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:FormMoreFieldsMenu\n"
+"Label\n"
+"value.text"
+msgid "More Fields"
+msgstr ""
+
#: WriterFormWindowState.xcu
#, fuzzy
msgctxt ""
diff --git a/source/en-ZA/reportdesign/messages.po b/source/en-ZA/reportdesign/messages.po
index 3f279804bea..7579615f169 100644
--- a/source/en-ZA/reportdesign/messages.po
+++ b/source/en-ZA/reportdesign/messages.po
@@ -1,9 +1,9 @@
-#. extracted from reportdesign/uiconfig/dbreport/ui
+#. extracted from reportdesign/inc
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2017-10-04 11:48+0200\n"
+"POT-Creation-Date: 2017-11-22 13:53+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,456 +13,6 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: backgrounddialog.ui:8
-msgctxt "backgrounddialog|BackgroundDialog"
-msgid "Section Setup"
-msgstr ""
-
-#: backgrounddialog.ui:100
-msgctxt "backgrounddialog|background"
-msgid "Background"
-msgstr ""
-
-#: chardialog.ui:8
-msgctxt "chardialog|CharDialog"
-msgid "Character Settings"
-msgstr ""
-
-#: chardialog.ui:99
-msgctxt "chardialog|font"
-msgid "Font"
-msgstr ""
-
-#: chardialog.ui:112
-msgctxt "chardialog|fonteffects"
-msgid "Font Effects"
-msgstr ""
-
-#: chardialog.ui:126
-msgctxt "chardialog|position"
-msgid "Position"
-msgstr ""
-
-#: chardialog.ui:140
-msgctxt "chardialog|asianlayout"
-msgid "Asian Layout"
-msgstr ""
-
-#: chardialog.ui:154
-msgctxt "chardialog|background"
-msgid "Highlighting"
-msgstr ""
-
-#: chardialog.ui:168
-msgctxt "chardialog|alignment"
-msgid "Alignment"
-msgstr ""
-
-#: condformatdialog.ui:10
-msgctxt "condformatdialog|CondFormat"
-msgid "Conditional Formatting"
-msgstr ""
-
-#: conditionwin.ui:56
-msgctxt "conditionwin|typeCombobox"
-msgid "Field Value Is"
-msgstr ""
-
-#: conditionwin.ui:57
-msgctxt "conditionwin|typeCombobox"
-msgid "Expression Is"
-msgstr ""
-
-#: conditionwin.ui:71
-msgctxt "conditionwin|opCombobox"
-msgid "between"
-msgstr ""
-
-#: conditionwin.ui:72
-msgctxt "conditionwin|opCombobox"
-msgid "not between"
-msgstr ""
-
-#: conditionwin.ui:73
-msgctxt "conditionwin|opCombobox"
-msgid "equal to"
-msgstr ""
-
-#: conditionwin.ui:74
-msgctxt "conditionwin|opCombobox"
-msgid "not equal to"
-msgstr ""
-
-#: conditionwin.ui:75
-msgctxt "conditionwin|opCombobox"
-msgid "greater than"
-msgstr ""
-
-#: conditionwin.ui:76
-msgctxt "conditionwin|opCombobox"
-msgid "less than"
-msgstr ""
-
-#: conditionwin.ui:77
-msgctxt "conditionwin|opCombobox"
-msgid "greater than or equal to"
-msgstr ""
-
-#: conditionwin.ui:78
-msgctxt "conditionwin|opCombobox"
-msgid "less than or equal to"
-msgstr ""
-
-#: conditionwin.ui:107
-msgctxt "conditionwin|lhsButton"
-msgid "..."
-msgstr ""
-
-#: conditionwin.ui:130
-msgctxt "conditionwin|andLabel"
-msgid "and"
-msgstr ""
-
-#: conditionwin.ui:158
-msgctxt "conditionwin|rhsButton"
-msgid "..."
-msgstr ""
-
-#: conditionwin.ui:220
-msgctxt "conditionwin|ToolBoxItem1"
-msgid "Bold"
-msgstr ""
-
-#: conditionwin.ui:235
-msgctxt "conditionwin|ToolBoxItem2"
-msgid "Italic"
-msgstr ""
-
-#: conditionwin.ui:250
-msgctxt "conditionwin|ToolBoxItem3"
-msgid "Underline"
-msgstr ""
-
-#: conditionwin.ui:275
-msgctxt "conditionwin|ToolBoxItem4"
-msgid "Background Color"
-msgstr ""
-
-#: conditionwin.ui:290
-msgctxt "conditionwin|ToolBoxItem5"
-msgid "Font Color"
-msgstr ""
-
-#: conditionwin.ui:305
-msgctxt "conditionwin|ToolBoxItem6"
-msgid "Character Formatting"
-msgstr ""
-
-#: conditionwin.ui:371
-msgctxt "conditionwin|removeButton"
-msgid "-"
-msgstr ""
-
-#: conditionwin.ui:385
-msgctxt "conditionwin|addButton"
-msgid "+"
-msgstr ""
-
-#: datetimedialog.ui:8
-msgctxt "datetimedialog|DateTimeDialog"
-msgid "Date and Time"
-msgstr ""
-
-#: datetimedialog.ui:87
-msgctxt "datetimedialog|date"
-msgid "_Include Date"
-msgstr ""
-
-#: datetimedialog.ui:108
-msgctxt "datetimedialog|datelistbox_label"
-msgid "_Format:"
-msgstr ""
-
-#: datetimedialog.ui:119
-msgctxt "datetimedialog|time"
-msgid "Include _Time"
-msgstr ""
-
-#: datetimedialog.ui:140
-msgctxt "datetimedialog|timelistbox_label"
-msgid "Fo_rmat:"
-msgstr ""
-
-#: floatingfield.ui:11
-msgctxt "floatingfield|FloatingField"
-msgid "Sorting and Grouping"
-msgstr ""
-
-#: floatingfield.ui:30
-msgctxt "floatingfield|up"
-msgid "Sort Ascending"
-msgstr ""
-
-#: floatingfield.ui:43
-msgctxt "floatingfield|down"
-msgid "Sort Descending"
-msgstr ""
-
-#: floatingfield.ui:56
-msgctxt "floatingfield|delete"
-msgid "Remove sorting"
-msgstr ""
-
-#: floatingfield.ui:79
-msgctxt "floatingfield|insert"
-msgid "Insert"
-msgstr ""
-
-#: floatingfield.ui:98
-msgctxt "floatingfield|helptext"
-msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
-msgstr ""
-
-#: floatingnavigator.ui:10
-msgctxt "floatingnavigator|FloatingNavigator"
-msgid "Report navigator"
-msgstr ""
-
-#: floatingsort.ui:11
-msgctxt "floatingsort|FloatingSort"
-msgid "Sorting and Grouping"
-msgstr ""
-
-#: floatingsort.ui:53
-msgctxt "floatingsort|label5"
-msgid "Group actions"
-msgstr ""
-
-#: floatingsort.ui:75
-msgctxt "floatingsort|up"
-msgid "Move up"
-msgstr ""
-
-#: floatingsort.ui:88
-msgctxt "floatingsort|down"
-msgid "Move down"
-msgstr ""
-
-#: floatingsort.ui:101
-msgctxt "floatingsort|delete"
-msgid "Delete"
-msgstr ""
-
-#: floatingsort.ui:152
-msgctxt "floatingsort|label1"
-msgid "Groups"
-msgstr ""
-
-#: floatingsort.ui:192
-msgctxt "floatingsort|label6"
-msgid "Sorting"
-msgstr ""
-
-#: floatingsort.ui:208
-msgctxt "floatingsort|label7"
-msgid "Group Header"
-msgstr ""
-
-#: floatingsort.ui:224
-msgctxt "floatingsort|label8"
-msgid "Group Footer"
-msgstr ""
-
-#: floatingsort.ui:240
-msgctxt "floatingsort|label9"
-msgid "Group On"
-msgstr ""
-
-#: floatingsort.ui:256
-msgctxt "floatingsort|label10"
-msgid "Group Interval"
-msgstr ""
-
-#: floatingsort.ui:272
-msgctxt "floatingsort|label11"
-msgid "Keep Together"
-msgstr ""
-
-#: floatingsort.ui:290
-msgctxt "floatingsort|sorting"
-msgid "Ascending"
-msgstr ""
-
-#: floatingsort.ui:291
-msgctxt "floatingsort|sorting"
-msgid "Descending"
-msgstr ""
-
-#: floatingsort.ui:308
-msgctxt "floatingsort|header"
-msgid "Present"
-msgstr ""
-
-#: floatingsort.ui:309
-msgctxt "floatingsort|header"
-msgid "Not present"
-msgstr ""
-
-#: floatingsort.ui:326
-msgctxt "floatingsort|keep"
-msgid "No"
-msgstr ""
-
-#: floatingsort.ui:327
-msgctxt "floatingsort|keep"
-msgid "Whole Group"
-msgstr ""
-
-#: floatingsort.ui:328
-msgctxt "floatingsort|keep"
-msgid "With First Detail"
-msgstr ""
-
-#: floatingsort.ui:345
-msgctxt "floatingsort|footer"
-msgid "Present"
-msgstr ""
-
-#: floatingsort.ui:346
-msgctxt "floatingsort|footer"
-msgid "Not present"
-msgstr ""
-
-#: floatingsort.ui:363
-msgctxt "floatingsort|group"
-msgid "Each Value"
-msgstr ""
-
-#: floatingsort.ui:394
-msgctxt "floatingsort|label2"
-msgid "Properties"
-msgstr ""
-
-#: floatingsort.ui:436
-msgctxt "floatingsort|label3"
-msgid "Help"
-msgstr ""
-
-#: groupsortmenu.ui:12
-msgctxt "groupsortmenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: navigatormenu.ui:12
-msgctxt "navigatormenu|sorting"
-msgid "Sorting and Grouping..."
-msgstr ""
-
-#: navigatormenu.ui:26
-msgctxt "navigatormenu|page"
-msgid "Page Header/Footer..."
-msgstr ""
-
-#: navigatormenu.ui:34
-msgctxt "navigatormenu|report"
-msgid "Report Header/Footer..."
-msgstr ""
-
-#: navigatormenu.ui:48
-msgctxt "navigatormenu|function"
-msgid "New Function"
-msgstr ""
-
-#: navigatormenu.ui:62
-msgctxt "navigatormenu|properties"
-msgid "Properties..."
-msgstr ""
-
-#: navigatormenu.ui:70
-msgctxt "navigatormenu|delete"
-msgid "_Delete"
-msgstr ""
-
-#: pagedialog.ui:8
-msgctxt "pagedialog|PageDialog"
-msgid "Page Setup"
-msgstr ""
-
-#: pagedialog.ui:99
-msgctxt "pagedialog|page"
-msgid "Page"
-msgstr ""
-
-#: pagedialog.ui:113
-msgctxt "pagedialog|background"
-msgid "Background"
-msgstr ""
-
-#: pagenumberdialog.ui:8
-msgctxt "pagenumberdialog|PageNumberDialog"
-msgid "Page Numbers"
-msgstr ""
-
-#: pagenumberdialog.ui:98
-msgctxt "pagenumberdialog|pagen"
-msgid "_Page N"
-msgstr ""
-
-#: pagenumberdialog.ui:116
-msgctxt "pagenumberdialog|pagenofm"
-msgid "Page _N of M"
-msgstr ""
-
-#: pagenumberdialog.ui:140
-msgctxt "pagenumberdialog|label1"
-msgid "Format"
-msgstr ""
-
-#: pagenumberdialog.ui:177
-msgctxt "pagenumberdialog|toppage"
-msgid "_Top of Page (Header)"
-msgstr ""
-
-#: pagenumberdialog.ui:195
-msgctxt "pagenumberdialog|bottompage"
-msgid "_Bottom of Page (Footer)"
-msgstr ""
-
-#: pagenumberdialog.ui:219
-msgctxt "pagenumberdialog|label2"
-msgid "Position"
-msgstr ""
-
-#: pagenumberdialog.ui:262
-msgctxt "pagenumberdialog|alignment"
-msgid "Left"
-msgstr ""
-
-#: pagenumberdialog.ui:263
-msgctxt "pagenumberdialog|alignment"
-msgid "Center"
-msgstr ""
-
-#: pagenumberdialog.ui:264
-msgctxt "pagenumberdialog|alignment"
-msgid "Right"
-msgstr ""
-
-#: pagenumberdialog.ui:277
-msgctxt "pagenumberdialog|alignment_label"
-msgid "_Alignment:"
-msgstr ""
-
-#: pagenumberdialog.ui:288
-msgctxt "pagenumberdialog|shownumberonfirstpage"
-msgid "Show Number on First Page"
-msgstr ""
-
-#: pagenumberdialog.ui:309
-msgctxt "pagenumberdialog|label3"
-msgid "General"
-msgstr ""
-
#: stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "None"
@@ -1309,3 +859,453 @@ msgstr "Shape"
msgctxt "RID_STR_FIXEDLINE"
msgid "Fixed line"
msgstr "Fixed line"
+
+#: backgrounddialog.ui:8
+msgctxt "backgrounddialog|BackgroundDialog"
+msgid "Section Setup"
+msgstr ""
+
+#: backgrounddialog.ui:105
+msgctxt "backgrounddialog|background"
+msgid "Background"
+msgstr ""
+
+#: chardialog.ui:8
+msgctxt "chardialog|CharDialog"
+msgid "Character Settings"
+msgstr ""
+
+#: chardialog.ui:105
+msgctxt "chardialog|font"
+msgid "Font"
+msgstr ""
+
+#: chardialog.ui:127
+msgctxt "chardialog|fonteffects"
+msgid "Font Effects"
+msgstr ""
+
+#: chardialog.ui:150
+msgctxt "chardialog|position"
+msgid "Position"
+msgstr ""
+
+#: chardialog.ui:173
+msgctxt "chardialog|asianlayout"
+msgid "Asian Layout"
+msgstr ""
+
+#: chardialog.ui:196
+msgctxt "chardialog|background"
+msgid "Highlighting"
+msgstr ""
+
+#: chardialog.ui:219
+msgctxt "chardialog|alignment"
+msgid "Alignment"
+msgstr ""
+
+#: condformatdialog.ui:10
+msgctxt "condformatdialog|CondFormat"
+msgid "Conditional Formatting"
+msgstr ""
+
+#: conditionwin.ui:56
+msgctxt "conditionwin|typeCombobox"
+msgid "Field Value Is"
+msgstr ""
+
+#: conditionwin.ui:57
+msgctxt "conditionwin|typeCombobox"
+msgid "Expression Is"
+msgstr ""
+
+#: conditionwin.ui:71
+msgctxt "conditionwin|opCombobox"
+msgid "between"
+msgstr ""
+
+#: conditionwin.ui:72
+msgctxt "conditionwin|opCombobox"
+msgid "not between"
+msgstr ""
+
+#: conditionwin.ui:73
+msgctxt "conditionwin|opCombobox"
+msgid "equal to"
+msgstr ""
+
+#: conditionwin.ui:74
+msgctxt "conditionwin|opCombobox"
+msgid "not equal to"
+msgstr ""
+
+#: conditionwin.ui:75
+msgctxt "conditionwin|opCombobox"
+msgid "greater than"
+msgstr ""
+
+#: conditionwin.ui:76
+msgctxt "conditionwin|opCombobox"
+msgid "less than"
+msgstr ""
+
+#: conditionwin.ui:77
+msgctxt "conditionwin|opCombobox"
+msgid "greater than or equal to"
+msgstr ""
+
+#: conditionwin.ui:78
+msgctxt "conditionwin|opCombobox"
+msgid "less than or equal to"
+msgstr ""
+
+#: conditionwin.ui:107
+msgctxt "conditionwin|lhsButton"
+msgid "..."
+msgstr ""
+
+#: conditionwin.ui:130
+msgctxt "conditionwin|andLabel"
+msgid "and"
+msgstr ""
+
+#: conditionwin.ui:158
+msgctxt "conditionwin|rhsButton"
+msgid "..."
+msgstr ""
+
+#: conditionwin.ui:220
+msgctxt "conditionwin|ToolBoxItem1"
+msgid "Bold"
+msgstr ""
+
+#: conditionwin.ui:235
+msgctxt "conditionwin|ToolBoxItem2"
+msgid "Italic"
+msgstr ""
+
+#: conditionwin.ui:250
+msgctxt "conditionwin|ToolBoxItem3"
+msgid "Underline"
+msgstr ""
+
+#: conditionwin.ui:275
+msgctxt "conditionwin|ToolBoxItem4"
+msgid "Background Color"
+msgstr ""
+
+#: conditionwin.ui:290
+msgctxt "conditionwin|ToolBoxItem5"
+msgid "Font Color"
+msgstr ""
+
+#: conditionwin.ui:305
+msgctxt "conditionwin|ToolBoxItem6"
+msgid "Character Formatting"
+msgstr ""
+
+#: conditionwin.ui:371
+msgctxt "conditionwin|removeButton"
+msgid "-"
+msgstr ""
+
+#: conditionwin.ui:385
+msgctxt "conditionwin|addButton"
+msgid "+"
+msgstr ""
+
+#: datetimedialog.ui:8
+msgctxt "datetimedialog|DateTimeDialog"
+msgid "Date and Time"
+msgstr ""
+
+#: datetimedialog.ui:87
+msgctxt "datetimedialog|date"
+msgid "_Include Date"
+msgstr ""
+
+#: datetimedialog.ui:108
+msgctxt "datetimedialog|datelistbox_label"
+msgid "_Format:"
+msgstr ""
+
+#: datetimedialog.ui:119
+msgctxt "datetimedialog|time"
+msgid "Include _Time"
+msgstr ""
+
+#: datetimedialog.ui:140
+msgctxt "datetimedialog|timelistbox_label"
+msgid "Fo_rmat:"
+msgstr ""
+
+#: floatingfield.ui:11
+msgctxt "floatingfield|FloatingField"
+msgid "Sorting and Grouping"
+msgstr ""
+
+#: floatingfield.ui:30
+msgctxt "floatingfield|up"
+msgid "Sort Ascending"
+msgstr ""
+
+#: floatingfield.ui:43
+msgctxt "floatingfield|down"
+msgid "Sort Descending"
+msgstr ""
+
+#: floatingfield.ui:56
+msgctxt "floatingfield|delete"
+msgid "Remove sorting"
+msgstr ""
+
+#: floatingfield.ui:79
+msgctxt "floatingfield|insert"
+msgid "Insert"
+msgstr ""
+
+#: floatingfield.ui:98
+msgctxt "floatingfield|helptext"
+msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
+msgstr ""
+
+#: floatingnavigator.ui:10
+msgctxt "floatingnavigator|FloatingNavigator"
+msgid "Report navigator"
+msgstr ""
+
+#: floatingsort.ui:11
+msgctxt "floatingsort|FloatingSort"
+msgid "Sorting and Grouping"
+msgstr ""
+
+#: floatingsort.ui:53
+msgctxt "floatingsort|label5"
+msgid "Group actions"
+msgstr ""
+
+#: floatingsort.ui:75
+msgctxt "floatingsort|up"
+msgid "Move up"
+msgstr ""
+
+#: floatingsort.ui:88
+msgctxt "floatingsort|down"
+msgid "Move down"
+msgstr ""
+
+#: floatingsort.ui:101
+msgctxt "floatingsort|delete"
+msgid "Delete"
+msgstr ""
+
+#: floatingsort.ui:152
+msgctxt "floatingsort|label1"
+msgid "Groups"
+msgstr ""
+
+#: floatingsort.ui:192
+msgctxt "floatingsort|label6"
+msgid "Sorting"
+msgstr ""
+
+#: floatingsort.ui:208
+msgctxt "floatingsort|label7"
+msgid "Group Header"
+msgstr ""
+
+#: floatingsort.ui:224
+msgctxt "floatingsort|label8"
+msgid "Group Footer"
+msgstr ""
+
+#: floatingsort.ui:240
+msgctxt "floatingsort|label9"
+msgid "Group On"
+msgstr ""
+
+#: floatingsort.ui:256
+msgctxt "floatingsort|label10"
+msgid "Group Interval"
+msgstr ""
+
+#: floatingsort.ui:272
+msgctxt "floatingsort|label11"
+msgid "Keep Together"
+msgstr ""
+
+#: floatingsort.ui:290
+msgctxt "floatingsort|sorting"
+msgid "Ascending"
+msgstr ""
+
+#: floatingsort.ui:291
+msgctxt "floatingsort|sorting"
+msgid "Descending"
+msgstr ""
+
+#: floatingsort.ui:308
+msgctxt "floatingsort|header"
+msgid "Present"
+msgstr ""
+
+#: floatingsort.ui:309
+msgctxt "floatingsort|header"
+msgid "Not present"
+msgstr ""
+
+#: floatingsort.ui:326
+msgctxt "floatingsort|keep"
+msgid "No"
+msgstr ""
+
+#: floatingsort.ui:327
+msgctxt "floatingsort|keep"
+msgid "Whole Group"
+msgstr ""
+
+#: floatingsort.ui:328
+msgctxt "floatingsort|keep"
+msgid "With First Detail"
+msgstr ""
+
+#: floatingsort.ui:345
+msgctxt "floatingsort|footer"
+msgid "Present"
+msgstr ""
+
+#: floatingsort.ui:346
+msgctxt "floatingsort|footer"
+msgid "Not present"
+msgstr ""
+
+#: floatingsort.ui:363
+msgctxt "floatingsort|group"
+msgid "Each Value"
+msgstr ""
+
+#: floatingsort.ui:394
+msgctxt "floatingsort|label2"
+msgid "Properties"
+msgstr ""
+
+#: floatingsort.ui:436
+msgctxt "floatingsort|label3"
+msgid "Help"
+msgstr ""
+
+#: groupsortmenu.ui:12
+msgctxt "groupsortmenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: navigatormenu.ui:12
+msgctxt "navigatormenu|sorting"
+msgid "Sorting and Grouping..."
+msgstr ""
+
+#: navigatormenu.ui:26
+msgctxt "navigatormenu|page"
+msgid "Page Header/Footer..."
+msgstr ""
+
+#: navigatormenu.ui:34
+msgctxt "navigatormenu|report"
+msgid "Report Header/Footer..."
+msgstr ""
+
+#: navigatormenu.ui:48
+msgctxt "navigatormenu|function"
+msgid "New Function"
+msgstr ""
+
+#: navigatormenu.ui:62
+msgctxt "navigatormenu|properties"
+msgid "Properties..."
+msgstr ""
+
+#: navigatormenu.ui:70
+msgctxt "navigatormenu|delete"
+msgid "_Delete"
+msgstr ""
+
+#: pagedialog.ui:8
+msgctxt "pagedialog|PageDialog"
+msgid "Page Setup"
+msgstr ""
+
+#: pagedialog.ui:105
+msgctxt "pagedialog|page"
+msgid "Page"
+msgstr ""
+
+#: pagedialog.ui:127
+msgctxt "pagedialog|background"
+msgid "Background"
+msgstr ""
+
+#: pagenumberdialog.ui:8
+msgctxt "pagenumberdialog|PageNumberDialog"
+msgid "Page Numbers"
+msgstr ""
+
+#: pagenumberdialog.ui:98
+msgctxt "pagenumberdialog|pagen"
+msgid "_Page N"
+msgstr ""
+
+#: pagenumberdialog.ui:116
+msgctxt "pagenumberdialog|pagenofm"
+msgid "Page _N of M"
+msgstr ""
+
+#: pagenumberdialog.ui:140
+msgctxt "pagenumberdialog|label1"
+msgid "Format"
+msgstr ""
+
+#: pagenumberdialog.ui:177
+msgctxt "pagenumberdialog|toppage"
+msgid "_Top of Page (Header)"
+msgstr ""
+
+#: pagenumberdialog.ui:195
+msgctxt "pagenumberdialog|bottompage"
+msgid "_Bottom of Page (Footer)"
+msgstr ""
+
+#: pagenumberdialog.ui:219
+msgctxt "pagenumberdialog|label2"
+msgid "Position"
+msgstr ""
+
+#: pagenumberdialog.ui:262
+msgctxt "pagenumberdialog|alignment"
+msgid "Left"
+msgstr ""
+
+#: pagenumberdialog.ui:263
+msgctxt "pagenumberdialog|alignment"
+msgid "Center"
+msgstr ""
+
+#: pagenumberdialog.ui:264
+msgctxt "pagenumberdialog|alignment"
+msgid "Right"
+msgstr ""
+
+#: pagenumberdialog.ui:277
+msgctxt "pagenumberdialog|alignment_label"
+msgid "_Alignment:"
+msgstr ""
+
+#: pagenumberdialog.ui:288
+msgctxt "pagenumberdialog|shownumberonfirstpage"
+msgid "Show Number on First Page"
+msgstr ""
+
+#: pagenumberdialog.ui:309
+msgctxt "pagenumberdialog|label3"
+msgid "General"
+msgstr ""
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index 7f0cc6fc197..f8a813d03c5 100644
--- a/source/en-ZA/sc/messages.po
+++ b/source/en-ZA/sc/messages.po