/* -*- 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 #ifdef indices #undef indices #endif #ifdef extents #undef extents #endif using namespace ::com::sun::star; using namespace ::com::sun::star::accessibility; //===== internal ======================================================== namespace { struct ScAccessibleShapeData { ScAccessibleShapeData(css::uno::Reference< css::drawing::XShape > xShape_); ~ScAccessibleShapeData(); mutable rtl::Reference< ::accessibility::AccessibleShape > pAccShape; mutable std::optional xRelationCell; // if it is NULL this shape is anchored on the table css::uno::Reference< css::drawing::XShape > xShape; mutable bool bSelected; bool bSelectable; // cache these to make the sorting cheaper std::optional mxLayerID; std::optional mxZOrder; }; } ScAccessibleShapeData::ScAccessibleShapeData(css::uno::Reference< css::drawing::XShape > xShape_) : xShape(xShape_), bSelected(false), bSelectable(true) { static constexpr OUStringLiteral gsLayerId = u"LayerID"; static constexpr OUStringLiteral gsZOrder = u"ZOrder"; uno::Reference< beans::XPropertySet> xProps(xShape, uno::UNO_QUERY); if (xProps.is()) { uno::Any aAny = xProps->getPropertyValue(gsLayerId); sal_Int16 nLayerID; if (aAny >>= nLayerID) mxLayerID = nLayerID; sal_Int32 nZOrder; aAny = xProps->getPropertyValue(gsZOrder); if (aAny >>= nZOrder) mxZOrder = nZOrder; } } ScAccessibleShapeData::~ScAccessibleShapeData() { if (pAccShape.is()) { pAccShape->dispose(); } } namespace { struct ScShapeDataLess { static void ConvertLayerId(sal_Int16& rLayerID) // changes the number of the LayerId so it the accessibility order { // note: MSVC 2017 ICE's if this is written as "switch" so use "if" if (SC_LAYER_FRONT.get() == rLayerID) { rLayerID = 1; } else if (SC_LAYER_BACK.get() == rLayerID) { rLayerID = 0; } else if (SC_LAYER_INTERN.get() == rLayerID) { rLayerID = 2; } else if (SC_LAYER_CONTROLS.get() == rLayerID) { rLayerID = 3; } } static bool LessThanSheet(const ScAccessibleShapeData* pData) { bool bResult(false); if (pData->mxLayerID) { if (SdrLayerID(*pData->mxLayerID) == SC_LAYER_BACK) bResult = true; } return bResult; } bool operator()(const ScAccessibleShapeData* pData1, const ScAccessibleShapeData* pData2) const { bool bResult(false); if (pData1 && pData2) { if( pData1->mxLayerID && pData2->mxLayerID ) { sal_Int16 nLayerID1 = *pData1->mxLayerID; sal_Int16 nLayerID2 = *pData2->mxLayerID; if (nLayerID1 == nLayerID2) { if ( pData1->mxZOrder && pData2->mxZOrder ) bResult = (*pData1->mxZOrder < *pData2->mxZOrder); } else { ConvertLayerId(nLayerID1); ConvertLayerId(nLayerID2); bResult = (nLayerID1 < nLayerID2); } } } else if (pData1 && !pData2) bResult = LessThanSheet(pData1); else if (!pData1 && pData2) bResult = !LessThanSheet(pData2); else bResult = false; return bResult; } }; } class ScChildrenShapes : public SfxListener, public ::accessibility::IAccessibleParent { public: ScChildrenShapes(ScAccessibleDocument* pAccessibleDocument, ScTabViewShell* pViewShell, ScSplitPos eSplitPos); virtual ~ScChildrenShapes() override; ///===== SfxListener ===================================================== virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; ///===== IAccessibleParent =============================================== virtual bool ReplaceChild ( ::accessibility::AccessibleShape* pCurrentChild, const css::uno::Reference< css::drawing::XShape >& _rxShape, const tools::Long _nIndex, const ::accessibility::AccessibleShapeTreeInfo& _rShapeTreeInfo ) override; virtual ::accessibility::AccessibleControlShape* GetAccControlShapeFromModel (css::beans::XPropertySet* pSet) override; virtual css::uno::Reference< css::accessibility::XAccessible> GetAccessibleCaption (const css::uno::Reference& xShape) override; ///===== Internal ======================================================== void SetDrawBroadcaster(); sal_Int32 GetCount() const; uno::Reference< XAccessible > Get(const ScAccessibleShapeData* pData) const; uno::Reference< XAccessible > Get(sal_Int32 nIndex) const; uno::Reference< XAccessible > GetAt(const awt::Point& rPoint) const; // gets the index of the shape starting on 0 (without the index of the table) // returns the selected shape bool IsSelected(sal_Int32 nIndex, css::uno::Reference& rShape) const; bool SelectionChanged(); void Select(sal_Int32 nIndex); void DeselectAll(); // deselect also the table void SelectAll(); sal_Int32 GetSelectedCount() const; uno::Reference< XAccessible > GetSelected(sal_Int32 nSelectedChildIndex, bool bTabSelected) const; void Deselect(sal_Int32 nChildIndex); SdrPage* GetDrawPage() const; rtl::Reference GetRelationSet(const ScAddress* pAddress) const; void VisAreaChanged() const; private: typedef std::vector SortedShapes; typedef std::unordered_map, ScAccessibleShapeData*> ShapesMap; mutable SortedShapes maZOrderedShapes; // a null pointer represents the sheet in the correct order mutable ShapesMap maShapesMap; mutable bool mbShapesNeedSorting; // set if maZOrderedShapes needs sorting mutable ::accessibility::AccessibleShapeTreeInfo maShapeTreeInfo; mutable css::uno::Reference xSelectionSupplier; mutable sal_uInt32 mnShapesSelected; ScTabViewShell* mpViewShell; ScAccessibleDocument* mpAccessibleDocument; ScSplitPos meSplitPos; void FillShapes(std::vector < uno::Reference < drawing::XShape > >& rShapes) const; bool FindSelectedShapesChanges(const css::uno::Reference& xShapes) const; std::optional GetAnchor(const uno::Reference& xShape) const; uno::Reference GetRelationSet(const ScAccessibleShapeData* pData) const; void SetAnchor(const uno::Reference& xShape, ScAccessibleShapeData* pData) const; void AddShape(const uno::Reference& xShape, bool bCommitChange) const; void RemoveShape(const uno::Reference& xShape) const; bool FindShape(const uno::Reference& xShape, SortedShapes::iterator& rItr) const; static sal_Int8 Compare(const ScAccessibleShapeData* pData1, const ScAccessibleShapeData* pData2); }; ScChildrenShapes::ScChildrenShapes(ScAccessibleDocument* pAccessibleDocument, ScTabViewShell* pViewShell, ScSplitPos eSplitPos) : mbShapesNeedSorting(false), mnShapesSelected(0), mpViewShell(pViewShell), mpAccessibleDocument(pAccessibleDocument), meSplitPos(eSplitPos) { if (mpViewShell) { SfxViewFrame* pViewFrame = mpViewShell->GetViewFrame(); if (pViewFrame) { xSelectionSupplier = uno::Reference(pViewFrame->GetFrame().GetController(), uno::UNO_QUERY); if (xSelectionSupplier.is()) { xSelectionSupplier->addSelectionChangeListener(mpAccessibleDocument); uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (xShapes.is()) mnShapesSelected = xShapes->getCount(); } } } maZOrderedShapes.push_back(nullptr); // add an element which represents the table GetCount(); // fill list with filtered shapes (no internal shapes) if (mnShapesSelected) { //set flag on every selected shape if (!xSelectionSupplier.is()) throw uno::RuntimeException(); uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (xShapes.is()) FindSelectedShapesChanges(xShapes); } if (!pViewShell) return; ScViewData& rViewData = pViewShell->GetViewData(); SfxBroadcaster* pDrawBC = rViewData.GetDocument().GetDrawBroadcaster(); if (pDrawBC) { StartListening(*pDrawBC); maShapeTreeInfo.SetModelBroadcaster( new ScDrawModelBroadcaster(rViewData.GetDocument().GetDrawLayer()) ); maShapeTreeInfo.SetSdrView(rViewData.GetScDrawView()); maShapeTreeInfo.SetController(nullptr); maShapeTreeInfo.SetWindow(pViewShell->GetWindowByPos(meSplitPos)); maShapeTreeInfo.SetViewForwarder(mpAccessibleDocument); } } ScChildrenShapes::~ScChildrenShapes() { for (ScAccessibleShapeData* pShapeData : maZOrderedShapes) delete pShapeData; if (mpViewShell) { SfxBroadcaster* pDrawBC = mpViewShell->GetViewData().GetDocument().GetDrawBroadcaster(); if (pDrawBC) EndListening(*pDrawBC); } if (mpAccessibleDocument && xSelectionSupplier.is()) xSelectionSupplier->removeSelectionChangeListener(mpAccessibleDocument); } void ScChildrenShapes::SetDrawBroadcaster() { if (!mpViewShell) return; ScViewData& rViewData = mpViewShell->GetViewData(); SfxBroadcaster* pDrawBC = rViewData.GetDocument().GetDrawBroadcaster(); if (pDrawBC) { StartListening(*pDrawBC, DuplicateHandling::Prevent); maShapeTreeInfo.SetModelBroadcaster( new ScDrawModelBroadcaster(rViewData.GetDocument().GetDrawLayer()) ); maShapeTreeInfo.SetSdrView(rViewData.GetScDrawView()); maShapeTreeInfo.SetController(nullptr); maShapeTreeInfo.SetWindow(mpViewShell->GetWindowByPos(meSplitPos)); maShapeTreeInfo.SetViewForwarder(mpAccessibleDocument); } } void ScChildrenShapes::Notify(SfxBroadcaster&, const SfxHint& rHint) { if (rHint.GetId() != SfxHintId::ThisIsAnSdrHint) return; const SdrHint* pSdrHint = static_cast(&rHint); SdrObject* pObj = const_cast(pSdrHint->GetObject()); if (!(pObj && /*(pObj->GetLayer() != SC_LAYER_INTERN) && */(pObj->getSdrPageFromSdrObject() == GetDrawPage()) && (pObj->getSdrPageFromSdrObject() == pObj->getParentSdrObjListFromSdrObject())) ) //only do something if the object lies direct on the page return; switch (pSdrHint->GetKind()) { case SdrHintKind::ObjectChange : // object changed { uno::Reference xShape (pObj->getUnoShape(), uno::UNO_QUERY); if (xShape.is()) { mbShapesNeedSorting = true; // sort, because the z index or layer could be changed auto it = maShapesMap.find(xShape); if (it != maShapesMap.end()) SetAnchor(xShape, it->second); } } break; case SdrHintKind::ObjectInserted : // new drawing object inserted { uno::Reference xShape (pObj->getUnoShape(), uno::UNO_QUERY); if (xShape.is()) AddShape(xShape, true); } break; case SdrHintKind::ObjectRemoved : // Removed drawing object from list { uno::Reference xShape (pObj->getUnoShape(), uno::UNO_QUERY); if (xShape.is()) RemoveShape(xShape); } break; default : { // other events are not interesting } break; } } bool ScChildrenShapes::ReplaceChild (::accessibility::AccessibleShape* pCurrentChild, const css::uno::Reference< css::drawing::XShape >& _rxShape, const tools::Long /*_nIndex*/, const ::accessibility::AccessibleShapeTreeInfo& _rShapeTreeInfo) { // create the new child rtl::Reference< ::accessibility::AccessibleShape > pReplacement(::accessibility::ShapeTypeHandler::Instance().CreateAccessibleObject ( ::accessibility::AccessibleShapeInfo ( _rxShape, pCurrentChild->getAccessibleParent(), this ), _rShapeTreeInfo )); bool bResult(false); if (pReplacement.is()) { OSL_ENSURE(pCurrentChild->GetXShape().get() == pReplacement->GetXShape().get(), "XShape changes and should be inserted sorted"); auto it = maShapesMap.find(pCurrentChild->GetXShape()); if (it != maShapesMap.end() && it->second->pAccShape.is()) { OSL_ENSURE(it->second->pAccShape == pCurrentChild, "wrong child found"); AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::CHILD; aEvent.Source = uno::Reference< XAccessibleContext >(mpAccessibleDocument); aEvent.OldValue <<= uno::Reference(pCurrentChild); mpAccessibleDocument->CommitChange(aEvent); // child is gone - event pCurrentChild->dispose(); } // Init after above possible pCurrentChild->dispose so we don't trigger the assert // ScDrawModelBroadcaster::addShapeEventListener of duplicate listeners pReplacement->Init(); if (it != maShapesMap.end()) { it->second->pAccShape = pReplacement; AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::CHILD; aEvent.Source = uno::Reference< XAccessibleContext >(mpAccessibleDocument); aEvent.NewValue <<= uno::Reference(pReplacement); mpAccessibleDocument->CommitChange(aEvent); // child is new - event bResult = true; } } return bResult; } ::accessibility::AccessibleControlShape * ScChildrenShapes::GetAccControlShapeFromModel(css::beans::XPropertySet* pSet) { GetCount(); // populate for (ScAccessibleShapeData* pShape : maZOrderedShapes) { if (pShape) { rtl::Reference< ::accessibility::AccessibleShape > pAccShape(pShape->pAccShape); if (pAccShape.is() && ::accessibility::ShapeTypeHandler::Instance().GetTypeId (pAccShape->GetXShape()) == ::accessibility::DRAWING_CONTROL) { ::accessibility::AccessibleControlShape *pCtlAccShape = static_cast < ::accessibility::AccessibleControlShape* >(pAccShape.get()); if (pCtlAccShape && pCtlAccShape->GetControlModel() == pSet) return pCtlAccShape; } } } return nullptr; } css::uno::Reference < css::accessibility::XAccessible > ScChildrenShapes::GetAccessibleCaption (const css::uno::Reference < css::drawing::XShape>& xShape) { GetCount(); // populate auto it = maShapesMap.find(xShape); if (it == maShapesMap.end()) return nullptr; ScAccessibleShapeData* pShape = it->second; css::uno::Reference< css::accessibility::XAccessible > xNewChild( pShape->pAccShape ); if(xNewChild) return xNewChild; return nullptr; } sal_Int32 ScChildrenShapes::GetCount() const { SdrPage* pDrawPage = GetDrawPage(); if (pDrawPage && (maZOrderedShapes.size() == 1)) // the table is always in { size_t nSdrObjCount = pDrawPage->GetObjCount(); maZOrderedShapes.reserve(nSdrObjCount + 1); // the table is always in for (size_t i = 0; i < nSdrObjCount; ++i) { SdrObject* pObj = pDrawPage->GetObj(i); if (pObj/* && (pObj->GetLayer() != SC_LAYER_INTERN)*/) { uno::Reference< drawing::XShape > xShape (pObj->getUnoShape(), uno::UNO_QUERY); AddShape(xShape, false); //inserts in the correct order } } } return maZOrderedShapes.size(); } uno::Reference< XAccessible > ScChildrenShapes::Get(const ScAccessibleShapeData* pData) const { if (!pData) return nullptr; if (!pData->pAccShape.is()) { ::accessibility::ShapeTypeHandler& rShapeHandler = ::accessibility::ShapeTypeHandler::Instance(); ::accessibility::AccessibleShapeInfo aShapeInfo(pData->xShape, mpAccessibleDocument, const_cast(this)); pData->pAccShape = rShapeHandler.CreateAccessibleObject( aShapeInfo, maShapeTreeInfo); if (pData->pAccShape.is()) { pData->pAccShape->Init(); if (pData->bSelected) pData->pAccShape->SetState(AccessibleStateType::SELECTED); if (!pData->bSelectable) pData->pAccShape->ResetState(AccessibleStateType::SELECTABLE); pData->pAccShape->SetRelationSet(GetRelationSet(pData)); } } return pData->pAccShape; } uno::Reference< XAccessible > ScChildrenShapes::Get(sal_Int32 nIndex) const { if (maZOrderedShapes.size() <= 1) GetCount(); // fill list with filtered shapes (no internal shapes) if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } if (o3tl::make_unsigned(nIndex) >= maZOrderedShapes.size()) return nullptr; return Get(maZOrderedShapes[nIndex]); } uno::Reference< XAccessible > ScChildrenShapes::GetAt(const awt::Point& rPoint) const { uno::Reference xAccessible; if(mpViewShell) { if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } sal_Int32 i(maZOrderedShapes.size() - 1); bool bFound(false); while (!bFound && i >= 0) { ScAccessibleShapeData* pShape = maZOrderedShapes[i]; if (pShape) { if (!pShape->pAccShape.is()) Get(pShape); if (pShape->pAccShape.is()) { Point aPoint(VCLPoint(rPoint)); aPoint -= VCLRectangle(pShape->pAccShape->getBounds()).TopLeft(); if (pShape->pAccShape->containsPoint(AWTPoint(aPoint))) { xAccessible = pShape->pAccShape.get(); bFound = true; } } else { OSL_FAIL("I should have an accessible shape now!"); } } else bFound = true; // this is the sheet and it lies before the rest of the shapes which are background shapes --i; } } return xAccessible; } bool ScChildrenShapes::IsSelected(sal_Int32 nIndex, uno::Reference& rShape) const { bool bResult (false); if (maZOrderedShapes.size() <= 1) GetCount(); // fill list with filtered shapes (no internal shapes) if (!xSelectionSupplier.is()) throw uno::RuntimeException(); if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } if (!maZOrderedShapes[nIndex]) return false; bResult = maZOrderedShapes[nIndex]->bSelected; rShape = maZOrderedShapes[nIndex]->xShape; #if OSL_DEBUG_LEVEL > 0 // test whether it is truly selected by a slower method uno::Reference< drawing::XShape > xReturnShape; bool bDebugResult(false); uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (xShapes.is()) { sal_Int32 nCount(xShapes->getCount()); if (nCount) { uno::Reference< drawing::XShape > xShape; uno::Reference< drawing::XShape > xIndexShape = maZOrderedShapes[nIndex]->xShape; sal_Int32 i(0); while (!bDebugResult && (i < nCount)) { xShapes->getByIndex(i) >>= xShape; if (xShape.is() && (xIndexShape.get() == xShape.get())) { bDebugResult = true; xReturnShape = xShape; } else ++i; } } } OSL_ENSURE((bResult == bDebugResult) && ((bResult && (rShape.get() == xReturnShape.get())) || !bResult), "found the wrong shape or result"); #endif return bResult; } bool ScChildrenShapes::SelectionChanged() { bool bResult(false); if (!xSelectionSupplier.is()) throw uno::RuntimeException(); uno::Reference xShapes(mpViewShell->getSelectedXShapes()); bResult = FindSelectedShapesChanges(xShapes); return bResult; } void ScChildrenShapes::Select(sal_Int32 nIndex) { if (maZOrderedShapes.size() <= 1) GetCount(); // fill list with filtered shapes (no internal shapes) if (!xSelectionSupplier.is()) throw uno::RuntimeException(); if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } if (!maZOrderedShapes[nIndex]) return; uno::Reference xShape; if (IsSelected(nIndex, xShape) || !maZOrderedShapes[nIndex]->bSelectable) return; uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (!xShapes.is()) xShapes = drawing::ShapeCollection::create( comphelper::getProcessComponentContext()); xShapes->add(maZOrderedShapes[nIndex]->xShape); try { xSelectionSupplier->select(uno::Any(xShapes)); maZOrderedShapes[nIndex]->bSelected = true; if (maZOrderedShapes[nIndex]->pAccShape.is()) maZOrderedShapes[nIndex]->pAccShape->SetState(AccessibleStateType::SELECTED); } catch (lang::IllegalArgumentException&) { } } void ScChildrenShapes::DeselectAll() { if (!xSelectionSupplier.is()) throw uno::RuntimeException(); bool bSomethingSelected(true); try { xSelectionSupplier->select(uno::Any()); //deselects all } catch (lang::IllegalArgumentException&) { OSL_FAIL("nothing selected before"); bSomethingSelected = false; } if (bSomethingSelected) for (const ScAccessibleShapeData* pAccShapeData : maZOrderedShapes) if (pAccShapeData) { pAccShapeData->bSelected = false; if (pAccShapeData->pAccShape.is()) pAccShapeData->pAccShape->ResetState(AccessibleStateType::SELECTED); } }; void ScChildrenShapes::SelectAll() { if (!xSelectionSupplier.is()) throw uno::RuntimeException(); if (maZOrderedShapes.size() <= 1) GetCount(); // fill list with filtered shapes (no internal shapes) if (maZOrderedShapes.size() <= 1) return; uno::Reference xShapes = drawing::ShapeCollection::create( comphelper::getProcessComponentContext()); try { for (const ScAccessibleShapeData* pAccShapeData : maZOrderedShapes) { if (pAccShapeData && pAccShapeData->bSelectable) { pAccShapeData->bSelected = true; if (pAccShapeData->pAccShape.is()) pAccShapeData->pAccShape->SetState(AccessibleStateType::SELECTED); if (xShapes.is()) xShapes->add(pAccShapeData->xShape); } } xSelectionSupplier->select(uno::Any(xShapes)); } catch (lang::IllegalArgumentException&) { SelectionChanged(); // find all selected shapes and set the flags } } void ScChildrenShapes::FillShapes(std::vector < uno::Reference < drawing::XShape > >& rShapes) const { uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (xShapes.is()) { sal_uInt32 nCount(xShapes->getCount()); for (sal_uInt32 i = 0; i < nCount; ++i) { uno::Reference xShape; xShapes->getByIndex(i) >>= xShape; if (xShape.is()) rShapes.push_back(xShape); } } } sal_Int32 ScChildrenShapes::GetSelectedCount() const { if (!xSelectionSupplier.is()) throw uno::RuntimeException(); std::vector < uno::Reference < drawing::XShape > > aShapes; FillShapes(aShapes); return aShapes.size(); } uno::Reference< XAccessible > ScChildrenShapes::GetSelected(sal_Int32 nSelectedChildIndex, bool bTabSelected) const { uno::Reference< XAccessible > xAccessible; if (maZOrderedShapes.size() <= 1) GetCount(); // fill list with shapes if (!bTabSelected) { std::vector < uno::Reference < drawing::XShape > > aShapes; FillShapes(aShapes); if (nSelectedChildIndex < 0 || o3tl::make_unsigned(nSelectedChildIndex) >= aShapes.size()) return xAccessible; SortedShapes::iterator aItr; if (FindShape(aShapes[nSelectedChildIndex], aItr)) xAccessible = Get(*aItr); } else { if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } for(const auto& rpShape : maZOrderedShapes) { if (!rpShape || rpShape->bSelected) { if (nSelectedChildIndex == 0) { if (rpShape) xAccessible = rpShape->pAccShape.get(); break; } else --nSelectedChildIndex; } } } return xAccessible; } void ScChildrenShapes::Deselect(sal_Int32 nChildIndex) { uno::Reference xShape; if (!IsSelected(nChildIndex, xShape)) // returns false if it is the sheet return; if (!xShape.is()) return; uno::Reference xShapes(mpViewShell->getSelectedXShapes()); if (xShapes.is()) xShapes->remove(xShape); try { xSelectionSupplier->select(uno::Any(xShapes)); } catch (lang::IllegalArgumentException&) { OSL_FAIL("something not selectable"); } maZOrderedShapes[nChildIndex]->bSelected = false; if (maZOrderedShapes[nChildIndex]->pAccShape.is()) maZOrderedShapes[nChildIndex]->pAccShape->ResetState(AccessibleStateType::SELECTED); } SdrPage* ScChildrenShapes::GetDrawPage() const { SCTAB nTab(mpAccessibleDocument->getVisibleTable()); SdrPage* pDrawPage = nullptr; if (mpViewShell) { ScDocument& rDoc = mpViewShell->GetViewData().GetDocument(); if (ScDrawLayer* pDrawLayer = rDoc.GetDrawLayer()) { if (pDrawLayer->HasObjects() && (pDrawLayer->GetPageCount() > nTab)) pDrawPage = pDrawLayer->GetPage(static_cast(static_cast(nTab))); } } return pDrawPage; } rtl::Reference ScChildrenShapes::GetRelationSet(const ScAddress* pAddress) const { rtl::Reference pRelationSet; for (const ScAccessibleShapeData* pAccShapeData : maZOrderedShapes) { if (pAccShapeData && ((!pAccShapeData->xRelationCell && !pAddress) || (pAccShapeData->xRelationCell && pAddress && (*(pAccShapeData->xRelationCell) == *pAddress)))) { if (!pRelationSet) pRelationSet = new utl::AccessibleRelationSetHelper(); AccessibleRelation aRelation; aRelation.TargetSet = { Get(pAccShapeData) }; aRelation.RelationType = AccessibleRelationType::CONTROLLER_FOR; pRelationSet->AddRelation(aRelation); } } return pRelationSet; } bool ScChildrenShapes::FindSelectedShapesChanges(const uno::Reference& xShapes) const { bool bResult(false); SortedShapes aShapesList; if (xShapes.is()) { mnShapesSelected = xShapes->getCount(); for (sal_uInt32 i = 0; i < mnShapesSelected; ++i) { uno::Reference< drawing::XShape > xShape; xShapes->getByIndex(i) >>= xShape; if (xShape.is()) { ScAccessibleShapeData* pShapeData = new ScAccessibleShapeData(xShape); aShapesList.push_back(pShapeData); } } } else mnShapesSelected = 0; SdrObject *pFocusedObj = nullptr; if( mnShapesSelected == 1 && aShapesList.size() == 1) { pFocusedObj = SdrObject::getSdrObjectFromXShape(aShapesList[0]->xShape); } std::sort(aShapesList.begin(), aShapesList.end(), ScShapeDataLess()); SortedShapes vecSelectedShapeAdd; SortedShapes vecSelectedShapeRemove; bool bHasSelect=false; SortedShapes::iterator aXShapesItr(aShapesList.begin()); SortedShapes::const_iterator aXShapesEndItr(aShapesList.end()); SortedShapes::iterator aDataItr(maZOrderedShapes.begin()); SortedShapes::const_iterator aDataEndItr(maZOrderedShapes.end()); SortedShapes::const_iterator aFocusedItr = aDataEndItr; while(aDataItr != aDataEndItr) { if (*aDataItr) // is it really a shape or only the sheet { sal_Int8 nComp(0); if (aXShapesItr == aXShapesEndItr) nComp = -1; // simulate that the Shape is lower, so the selection state will be removed else nComp = Compare(*aDataItr, *aXShapesItr); if (nComp == 0) { if (!(*aDataItr)->bSelected) { (*aDataItr)->bSelected = true; if ((*aDataItr)->pAccShape.is()) { (*aDataItr)->pAccShape->SetState(AccessibleStateType::SELECTED); (*aDataItr)->pAccShape->SetState(AccessibleStateType::FOCUSED); bResult = true; vecSelectedShapeAdd.push_back(*aDataItr); } aFocusedItr = aDataItr; } else { bHasSelect = true; } ++aDataItr; ++aXShapesItr; } else if (nComp < 0) { if ((*aDataItr)->bSelected) { (*aDataItr)->bSelected = false; if ((*aDataItr)->pAccShape.is()) { (*aDataItr)->pAccShape->ResetState(AccessibleStateType::SELECTED); (*aDataItr)->pAccShape->ResetState(AccessibleStateType::FOCUSED); bResult = true; vecSelectedShapeRemove.push_back(*aDataItr); } } ++aDataItr; } else { OSL_FAIL("here is a selected shape which is not in the childlist"); ++aXShapesItr; --mnShapesSelected; } } else ++aDataItr; } bool bWinFocus=false; if (mpViewShell) { ScGridWindow* pWin = static_cast(mpViewShell->GetWindowByPos(meSplitPos)); if (pWin) { bWinFocus = pWin->HasFocus(); } } const SdrMarkList* pMarkList = nullptr; SdrObject* pMarkedObj = nullptr; bool bIsFocuseMarked = true; if( mpViewShell && mnShapesSelected == 1 && bWinFocus) { ScDrawView* pScDrawView = mpViewShell->GetViewData().GetScDrawView(); if( pScDrawView ) { if( pScDrawView->GetMarkedObjectList().GetMarkCount() == 1 ) { pMarkList = &(pScDrawView->GetMarkedObjectList()); pMarkedObj = pMarkList->GetMark(0)->GetMarkedSdrObj(); uno::Reference< drawing::XShape > xMarkedXShape (pMarkedObj->getUnoShape(), uno::UNO_QUERY); if( aFocusedItr != aDataEndItr && (*aFocusedItr)->xShape.is() && xMarkedXShape.is() && (*aFocusedItr)->xShape != xMarkedXShape ) bIsFocuseMarked = false; } } } //if ((aFocusedItr != aDataEndItr) && (*aFocusedItr)->pAccShape.is() && (mnShapesSelected == 1)) if ( bIsFocuseMarked && (aFocusedItr != aDataEndItr) && (*aFocusedItr)->pAccShape.is() && (mnShapesSelected == 1) && bWinFocus) { (*aFocusedItr)->pAccShape->SetState(AccessibleStateType::FOCUSED); } else if( pFocusedObj && bWinFocus && pMarkList && pMarkList->GetMarkCount() == 1 && mnShapesSelected == 1 ) { if( pMarkedObj ) { uno::Reference< drawing::XShape > xMarkedXShape (pMarkedObj->getUnoShape(), uno::UNO_QUERY); SdrObject* pUpObj = pMarkedObj->getParentSdrObjectFromSdrObject(); if( pMarkedObj == pFocusedObj && pUpObj ) { uno::Reference< drawing::XShape > xUpGroupXShape (pUpObj->getUnoShape(), uno::UNO_QUERY); uno::Reference < XAccessible > xAccGroupShape = const_cast(this)->GetAccessibleCaption( xUpGroupXShape ); if( xAccGroupShape.is() ) { ::accessibility::AccessibleShape* pAccGroupShape = static_cast< ::accessibility::AccessibleShape* >(xAccGroupShape.get()); if( pAccGroupShape ) { sal_Int32 nCount = pAccGroupShape->getAccessibleChildCount(); for( sal_Int32 i = 0; i < nCount; i++ ) { uno::Reference xAccShape = pAccGroupShape->getAccessibleChild(i); if (xAccShape.is()) { ::accessibility::AccessibleShape* pChildAccShape = static_cast< ::accessibility::AccessibleShape* >(xAccShape.get()); uno::Reference< drawing::XShape > xChildShape = pChildAccShape->GetXShape(); if (xChildShape == xMarkedXShape) { pChildAccShape->SetState(AccessibleStateType::FOCUSED); } else { pChildAccShape->ResetState(AccessibleStateType::FOCUSED); } } } } } } } } if (vecSelectedShapeAdd.size() >= 10 ) { AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_WITHIN; aEvent.Source = uno::Reference< XAccessible >(mpAccessibleDocument); mpAccessibleDocument->CommitChange(aEvent); } else { for (const auto& rpShape : vecSelectedShapeAdd) { AccessibleEventObject aEvent; if (bHasSelect) { aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_ADD; } else { aEvent.EventId = AccessibleEventId::SELECTION_CHANGED; } aEvent.Source = uno::Reference< XAccessible >(mpAccessibleDocument); uno::Reference< XAccessible > xChild( rpShape->pAccShape ); aEvent.NewValue <<= xChild; mpAccessibleDocument->CommitChange(aEvent); } } for (const auto& rpShape : vecSelectedShapeRemove) { AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::SELECTION_CHANGED_REMOVE; aEvent.Source = uno::Reference< XAccessible >(mpAccessibleDocument); uno::Reference< XAccessible > xChild( rpShape->pAccShape ); aEvent.NewValue <<= xChild; mpAccessibleDocument->CommitChange(aEvent); } for(ScAccessibleShapeData*& pShapeData : aShapesList) { delete pShapeData; pShapeData = nullptr; } return bResult; } std::optional ScChildrenShapes::GetAnchor(const uno::Reference& xShape) const { if (mpViewShell) { SdrObject* pSdrObj = SdrObject::getSdrObjectFromXShape(xShape); uno::Reference xShapeProp(xShape, uno::UNO_QUERY); if (pSdrObj && xShapeProp.is()) { if (ScDrawObjData *pAnchor = ScDrawLayer::GetObjData(pSdrObj)) return std::optional(pAnchor->maStart); } } return std::optional(); } uno::Reference ScChildrenShapes::GetRelationSet(const ScAccessibleShapeData* pData) const { rtl::Reference pRelationSet = new utl::AccessibleRelationSetHelper(); if (pData && mpAccessibleDocument) { uno::Reference xAccessible = mpAccessibleDocument->GetAccessibleSpreadsheet(); // should be the current table if (pData->xRelationCell && xAccessible.is()) { sal_Int32 nRow = pData->xRelationCell->Row(); sal_Int32 nColumn = pData->xRelationCell->Col(); bool bPositionUnset = nRow == -1 && nColumn == -1; if (!bPositionUnset) { uno::Reference xAccTable(xAccessible->getAccessibleContext(), uno::UNO_QUERY); if (xAccTable.is()) xAccessible = xAccTable->getAccessibleCellAt(nRow, nColumn); } } AccessibleRelation aRelation; aRelation.TargetSet = { xAccessible }; aRelation.RelationType = AccessibleRelationType::CONTROLLED_BY; pRelationSet->AddRelation(aRelation); } return pRelationSet; } void ScChildrenShapes::SetAnchor(const uno::Reference& xShape, ScAccessibleShapeData* pData) const { if (pData) { std::optional xAddress = GetAnchor(xShape); if ((xAddress && pData->xRelationCell && (*xAddress != *(pData->xRelationCell))) || (!xAddress && pData->xRelationCell) || (xAddress && !pData->xRelationCell)) { pData->xRelationCell = xAddress; if (pData->pAccShape.is()) pData->pAccShape->SetRelationSet(GetRelationSet(pData)); } } } void ScChildrenShapes::AddShape(const uno::Reference& xShape, bool bCommitChange) const { assert( maShapesMap.find(xShape) == maShapesMap.end()); ScAccessibleShapeData* pShape = new ScAccessibleShapeData(xShape); maZOrderedShapes.push_back(pShape); mbShapesNeedSorting = true; maShapesMap[xShape] = pShape; SetAnchor(xShape, pShape); uno::Reference< beans::XPropertySet > xShapeProp(xShape, uno::UNO_QUERY); if (xShapeProp.is()) { uno::Any aPropAny = xShapeProp->getPropertyValue("LayerID"); sal_Int16 nLayerID = 0; if( aPropAny >>= nLayerID ) { if( (SdrLayerID(nLayerID) == SC_LAYER_INTERN) || (SdrLayerID(nLayerID) == SC_LAYER_HIDDEN) ) pShape->bSelectable = false; else pShape->bSelectable = true; } } if (!xSelectionSupplier.is()) throw uno::RuntimeException(); uno::Reference xShapes(mpViewShell->getSelectedXShapes()); uno::Reference xEnumAcc(xShapes, uno::UNO_QUERY); if (xEnumAcc.is()) { uno::Reference xEnum = xEnumAcc->createEnumeration(); if (xEnum.is()) { uno::Reference xSelectedShape; bool bFound(false); while (!bFound && xEnum->hasMoreElements()) { xEnum->nextElement() >>= xSelectedShape; if (xShape.is() && (xShape.get() == xSelectedShape.get())) { pShape->bSelected = true; bFound = true; } } } } if (mpAccessibleDocument && bCommitChange) { AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::CHILD; aEvent.Source = uno::Reference< XAccessibleContext >(mpAccessibleDocument); aEvent.NewValue <<= Get(pShape); mpAccessibleDocument->CommitChange(aEvent); // new child - event } } void ScChildrenShapes::RemoveShape(const uno::Reference& xShape) const { if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } SortedShapes::iterator aItr; if (FindShape(xShape, aItr)) { if (mpAccessibleDocument) { uno::Reference xOldAccessible (Get(*aItr)); delete *aItr; maShapesMap.erase((*aItr)->xShape); maZOrderedShapes.erase(aItr); AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::CHILD; aEvent.Source = uno::Reference< XAccessibleContext >(mpAccessibleDocument); aEvent.OldValue <<= xOldAccessible; mpAccessibleDocument->CommitChange(aEvent); // child is gone - event } else { delete *aItr; maShapesMap.erase((*aItr)->xShape); maZOrderedShapes.erase(aItr); } } else { OSL_FAIL("shape was not in internal list"); } } bool ScChildrenShapes::FindShape(const uno::Reference& xShape, ScChildrenShapes::SortedShapes::iterator& rItr) const { if (mbShapesNeedSorting) { std::sort(maZOrderedShapes.begin(), maZOrderedShapes.end(), ScShapeDataLess()); mbShapesNeedSorting = false; } bool bResult(false); ScAccessibleShapeData aShape(xShape); rItr = std::lower_bound(maZOrderedShapes.begin(), maZOrderedShapes.end(), &aShape, ScShapeDataLess()); if ((rItr != maZOrderedShapes.end()) && (*rItr != nullptr) && ((*rItr)->xShape.get() == xShape.get())) bResult = true; // if the shape is found #if OSL_DEBUG_LEVEL > 0 // test whether it finds truly the correct shape (perhaps it is not really sorted) SortedShapes::iterator aDebugItr = std::find_if(maZOrderedShapes.begin(), maZOrderedShapes.end(), [&xShape](const ScAccessibleShapeData* pShape) { return pShape && (pShape->xShape.get() == xShape.get()); }); bool bResult2 = (aDebugItr != maZOrderedShapes.end()); OSL_ENSURE((bResult == bResult2) && ((bResult && (rItr == aDebugItr)) || !bResult), "wrong Shape found"); #endif return bResult; } sal_Int8 ScChildrenShapes::Compare(const ScAccessibleShapeData* pData1, const ScAccessibleShapeData* pData2) { ScShapeDataLess aLess; bool bResult1(aLess(pData1, pData2)); bool bResult2(aLess(pData2, pData1)); sal_Int8 nResult(0); if (!bResult1 && bResult2) nResult = 1; else if (bResult1 && !bResult2) nResult = -1; return nResult; } void ScChildrenShapes::VisAreaChanged() const { for (const ScAccessibleShapeData* pAccShapeData: maZOrderedShapes) if (pAccShapeData && pAccShapeData->pAccShape.is()) pAccShapeData->pAccShape->ViewForwarderChanged(); } ScAccessibleDocument::ScAccessibleDocument( const uno::Reference& rxParent, ScTabViewShell* pViewShell, ScSplitPos eSplitPos) : ScAccessibleDocumentBase(rxParent), mpViewShell(pViewShell), meSplitPos(eSplitPos), mbCompleteSheetSelected(false) { maVisArea = GetVisibleArea_Impl(); } void ScAccessibleDocument::PreInit() { if (!mpViewShell) return; mpViewShell->AddAccessibilityObject(*this); vcl::Window *pWin = mpViewShell->GetWindowByPos(meSplitPos); if( pWin ) { pWin->AddChildEventListener( LINK( this, ScAccessibleDocument, WindowChildEventListener )); sal_uInt16 nCount = pWin->GetChildCount(); for( sal_uInt16 i=0; i < nCount; ++i ) { vcl::Window *pChildWin = pWin->GetChild( i ); if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() ) AddChild( pChildWin->GetAccessible(), false ); } } ScViewData& rViewData = mpViewShell->GetViewData(); if (rViewData.HasEditView(meSplitPos)) { uno::Reference xAcc = new ScAccessibleEditObject(this, rViewData.GetEditView(meSplitPos), mpViewShell->GetWindowByPos(meSplitPos), GetCurrentCellName(), GetCurrentCellDescription(), ScAccessibleEditObject::CellInEditMode); AddChild(xAcc, false); } } void ScAccessibleDocument::Init() { if(!mpChildrenShapes) mpChildrenShapes.reset( new ScChildrenShapes(this, mpViewShell, meSplitPos) ); } ScAccessibleDocument::~ScAccessibleDocument() { if (!ScAccessibleContextBase::IsDefunc() && !rBHelper.bInDispose) { // increment refcount to prevent double call off dtor osl_atomic_increment( &m_refCount ); dispose(); } } void SAL_CALL ScAccessibleDocument::disposing() { SolarMutexGuard aGuard; FreeAccessibleSpreadsheet(); if (mpViewShell) { vcl::Window *pWin = mpViewShell->GetWindowByPos(meSplitPos); if( pWin ) pWin->RemoveChildEventListener( LINK( this, ScAccessibleDocument, WindowChildEventListener )); mpViewShell->RemoveAccessibilityObject(*this); mpViewShell = nullptr; } mpChildrenShapes.reset(); ScAccessibleDocumentBase::disposing(); } void SAL_CALL ScAccessibleDocument::disposing( const lang::EventObject& /* Source */ ) { disposing(); } //===== SfxListener ===================================================== IMPL_LINK( ScAccessibleDocument, WindowChildEventListener, VclWindowEvent&, rEvent, void ) { OSL_ENSURE( rEvent.GetWindow(), "Window???" ); switch ( rEvent.GetId() ) { case VclEventId::WindowShow: // send create on show for direct accessible children { vcl::Window* pChildWin = static_cast < vcl::Window * >( rEvent.GetData() ); if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() ) { AddChild( pChildWin->GetAccessible(), true ); } } break; case VclEventId::WindowHide: // send destroy on hide for direct accessible children { vcl::Window* pChildWin = static_cast < vcl::Window * >( rEvent.GetData() ); if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() ) { RemoveChild( pChildWin->GetAccessible(), true ); } } break; default: break; } } void ScAccessibleDocument::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) { if (auto pFocusLostHint = dynamic_cast(&rHint) ) { if (pFocusLostHint->GetOldGridWin() == meSplitPos) { if (mxTempAcc.is() && mpTempAccEdit) mpTempAccEdit->LostFocus(); else if (mpAccessibleSpreadsheet.is()) mpAccessibleSpreadsheet->LostFocus(); else CommitFocusLost(); } } else if (auto pFocusGotHint = dynamic_cast(&rHint) ) { if (pFocusGotHint->GetNewGridWin() == meSplitPos) { uno::Reference xAccessible; if (mpChildrenShapes) { bool bTabMarked(IsTableSelected()); xAccessible = mpChildrenShapes->GetSelected(0, bTabMarked); } if( xAccessible.is() ) { uno::Any aNewValue; aNewValue<<=AccessibleStateType::FOCUSED; static_cast< ::accessibility::AccessibleShape* >(xAccessible.get())-> CommitChange(AccessibleEventId::STATE_CHANGED, aNewValue, uno::Any() ); } else { if (mxTempAcc.is() && mpTempAccEdit) mpTempAccEdit->GotFocus(); else if (mpAccessibleSpreadsheet.is()) mpAccessibleSpreadsheet->GotFocus(); else CommitFocusGained(); } } } else { // only notify if child exist, otherwise it is not necessary if ((rHint.GetId() == SfxHintId::ScAccTableChanged) && mpAccessibleSpreadsheet.is()) { FreeAccessibleSpreadsheet(); // Shapes / form controls after reload not accessible, rebuild the // mpChildrenShapes variable. mpChildrenShapes.reset( new ScChildrenShapes( this, mpViewShell, meSplitPos ) ); AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::INVALIDATE_ALL_CHILDREN; aEvent.Source = uno::Reference< XAccessibleContext >(this); CommitChange(aEvent); // all children changed if (mpAccessibleSpreadsheet.is()) mpAccessibleSpreadsheet->FireFirstCellFocus(); } else if (rHint.GetId() == SfxHintId::ScAccMakeDrawLayer) { if (mpChildrenShapes) mpChildrenShapes->SetDrawBroadcaster(); } else if (rHint.GetId() == SfxHintId::ScAccEnterEditMode) // this event comes only on creating edit field of a cell { if (mpViewShell->GetViewData().GetEditActivePart() == meSplitPos) { ScViewData& rViewData = mpViewShell->GetViewData(); const EditEngine* pEditEng = rViewData.GetEditView(meSplitPos)->GetEditEngine(); if (pEditEng && pEditEng->IsUpdateLayout()) { mpTempAccEdit = new ScAccessibleEditObject(this, rViewData.GetEditView(meSplitPos), mpViewShell->GetWindowByPos(meSplitPos), GetCurrentCellName(), ScResId(STR_ACC_EDITLINE_DESCR), ScAccessibleEditObject::CellInEditMode); uno::Reference xAcc = mpTempAccEdit; AddChild(xAcc, true); if (mpAccessibleSpreadsheet.is()) mpAccessibleSpreadsheet->LostFocus(); else CommitFocusLost(); mpTempAccEdit->GotFocus(); } } } else if (rHint.GetId() == SfxHintId::ScAccLeaveEditMode) { if (mxTempAcc.is()) { if (mpTempAccEdit) { mpTempAccEdit->LostFocus(); } RemoveChild(mxTempAcc, true); if (mpTempAccEdit) { // tdf#125982 a11y use-after-free of editengine by // ScAccessibleEditObjectTextData living past the // the editengine of the editview passed in above // in ScAccEnterEditMode mpTempAccEdit->dispose(); mpTempAccEdit = nullptr; } if (mpAccessibleSpreadsheet.is() && mpViewShell && mpViewShell->IsActive()) mpAccessibleSpreadsheet->GotFocus(); else if( mpViewShell && mpViewShell->IsActive()) CommitFocusGained(); } } else if ((rHint.GetId() == SfxHintId::ScAccVisAreaChanged) || (rHint.GetId() == SfxHintId::ScAccWindowResized)) { tools::Rectangle aOldVisArea(maVisArea); maVisArea = GetVisibleArea_Impl(); if (maVisArea != aOldVisArea) { if (maVisArea.GetSize() != aOldVisArea.GetSize()) { AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::BOUNDRECT_CHANGED; aEvent.Source = uno::Reference< XAccessibleContext >(this); CommitChange(aEvent); if (mpAccessibleSpreadsheet.is()) mpAccessibleSpreadsheet->BoundingBoxChanged(); if (mpAccessibleSpreadsheet.is() && mpViewShell && mpViewShell->IsActive()) mpAccessibleSpreadsheet->FireFirstCellFocus(); } else if (mpAccessibleSpreadsheet.is()) { mpAccessibleSpreadsheet->VisAreaChanged(); } if (mpChildrenShapes) mpChildrenShapes->VisAreaChanged(); } } } ScAccessibleDocumentBase::Notify(rBC, rHint); } void SAL_CALL ScAccessibleDocument::selectionChanged( const lang::EventObject& /* aEvent */ ) { bool bSelectionChanged(false); if (mpAccessibleSpreadsheet.is()) { bool bOldSelected(mbCompleteSheetSelected); mbCompleteSheetSelected = IsTableSelected(); if (bOldSelected != mbCompleteSheetSelected) { mpAccessibleSpreadsheet->CompleteSelectionChanged(mbCompleteSheetSelected); bSelectionChanged = true; } } if (mpChildrenShapes && mpChildrenShapes->SelectionChanged()) bSelectionChanged = true; if (bSelectionChanged) { AccessibleEventObject aEvent; aEvent.EventId = AccessibleEventId::SELECTION_CHANGED; aEvent.Source = uno::Reference< XAccessibleContext >(this); CommitChange(aEvent); } } //===== XInterface ===================================================== uno::Any SAL_CALL ScAccessibleDocument::queryInterface( uno::Type const & rType ) { uno::Any aAny (ScAccessibleDocumentImpl::queryInterface(rType)); return aAny.hasValue() ? aAny : ScAccessibleContextBase::queryInterface(rType); } void SAL_CALL ScAccessibleDocument::acquire() noexcept { ScAccessibleContextBase::acquire(); } void SAL_CALL ScAccessibleDocument::release() noexcept { ScAccessibleContextBase::release(); } //===== XAccessibleComponent ============================================ uno::Reference< XAccessible > SAL_CALL ScAccessibleDocument::getAccessibleAtPoint( const awt::Point& rPoint ) { uno::Reference xAccessible; if (containsPoint(rPoint)) { SolarMutexGuard aGuard; IsObjectValid(); if (mpChildrenShapes) xAccessible = mpChildrenShapes->GetAt(rPoint); if(!xAccessible.is()) { if (mxTempAcc.is()) { uno::Reference< XAccessibleContext > xCont(mxTempAcc->getAccessibleContext()); uno::Reference< XAccessibleComponent > xComp(xCont, uno::UNO_QUERY); if (xComp.is()) { tools::Rectangle aBound(VCLRectangle(xComp->getBounds())); if (aBound.Contains(VCLPoint(rPoint))) xAccessible = mxTempAcc; } } if (!xAccessible.is()) xAccessible = GetAccessibleSpreadsheet(); } } return xAccessible; } void SAL_CALL ScAccessibleDocument::grabFocus( ) { SolarMutexGuard aGuard; IsObjectValid(); if (!getAccessibleParent().is()) return; uno::Reference xAccessibleComponent(getAccessibleParent()->getAccessibleContext(), uno::UNO_QUERY); if (xAccessibleComponent.is()) { xAccessibleComponent->grabFocus(); // grab only focus if it does not have the focus and it is not hidden if (mpViewShell && (mpViewShell->GetViewData().GetActivePart() != meSplitPos) && mpViewShell->GetWindowByPos(meSplitPos)->IsVisible()) { mpViewShell->ActivatePart(meSplitPos); } } } //===== XAccessibleContext ============================================== /// Return the number of currently visible children. sal_Int32 SAL_CALL ScAccessibleDocument::getAccessibleChildCount() { SolarMutexGuard aGuard; IsObjectValid(); sal_Int32 nCount(1); if (mpChildrenShapes) nCount = mpChildrenShapes->GetCount(); // returns the count of the shapes inclusive the table if (mxTempAcc.is()) ++nCount; return nCount; } /// Return the specified child or NULL if index is invalid. uno::Reference SAL_CALL ScAccessibleDocument::getAccessibleChild(sal_Int32 nIndex) { SolarMutexGuard aGuard; IsObjectValid(); uno::Reference xAccessible; if (nIndex >= 0) { sal_Int32 nCount(1); if (mpChildrenShapes) { xAccessible = mpChildrenShapes->Get(nIndex); // returns NULL if it is the table or out of range nCount = mpChildrenShapes->GetCount(); //there is always a table } if (!xAccessible.is()) { if (nIndex < nCount) xAccessible = GetAccessibleSpreadsheet(); else if (nIndex == nCount && mxTempAcc.is()) xAccessible = mxTempAcc; } } if (!xAccessible.is()) throw lang::IndexOutOfBoundsException(); return xAccessible; } /// Return the set of current states. uno::Reference SAL_CALL ScAccessibleDocument::getAccessibleStateSet() { SolarMutexGuard aGuard; uno::Reference xParentStates; if (getAccessibleParent().is()) { uno::Reference xParentContext = getAccessibleParent()->getAccessibleContext(); xParentStates = xParentContext->getAccessibleStateSet(); } rtl::Reference pStateSet = new utl::AccessibleStateSetHelper(); if (IsDefunc(xParentStates)) pStateSet->AddState(AccessibleStateType::DEFUNC); else { pStateSet->AddState(AccessibleStateType::EDITABLE); pStateSet->AddState(AccessibleStateType::ENABLED); pStateSet->AddState(AccessibleStateType::OPAQUE); if (isShowing()) pStateSet->AddState(AccessibleStateType::SHOWING); if (isVisible()) pStateSet->AddState(AccessibleStateType::VISIBLE); } return pStateSet; } OUString SAL_CALL ScAccessibleDocument::getAccessibleName() { SolarMutexGuard g; OUString aName = ScResId(STR_ACC_DOC_SPREADSHEET); ScDocument* pScDoc = GetDocument(); if (!pScDoc) return aName; SfxObjectShell* pObjSh = pScDoc->GetDocumentShell(); if (!pObjSh) return aName; OUString aFileName; SfxMedium* pMed = pObjSh->GetMedium(); if (pMed) aFileName = pMed->GetName(); if (aFileName.isEmpty()) aFileName = pObjSh->GetTitle(SFX_TITLE_APINAME); if (!aFileName.isEmpty()) { OUString aReadOnly; if (pObjSh->IsReadOnly()) aReadOnly = ScResId(STR_ACC_DOC_SPREADSHEET_READONLY); aName = aFileName + aReadOnly + " - " + aName; } return aName; } ///===== XAccessibleSelection =========================================== void SAL_CALL ScAccessibleDocument::selectAccessibleChild( sal_Int32 nChildIndex ) { SolarMutexGuard aGuard; IsObjectValid(); if (!(mpChildrenShapes && mpViewShell)) return; sal_Int32 nCount(mpChildrenShapes->GetCount()); // all shapes and the table if (mxTempAcc.is()) ++nCount; if (nChildIndex < 0 || nChildIndex >= nCount) throw lang::IndexOutOfBoundsException(); uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); if (xAccessible.is()) { bool bWasTableSelected(IsTableSelected()); mpChildrenShapes->Select(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is too high if (bWasTableSelected) mpViewShell->SelectAll(); } else { mpViewShell->SelectAll(); } } sal_Bool SAL_CALL ScAccessibleDocument::isAccessibleChildSelected( sal_Int32 nChildIndex ) { SolarMutexGuard aGuard; IsObjectValid(); bool bResult(false); if (mpChildrenShapes) { sal_Int32 nCount(mpChildrenShapes->GetCount()); // all shapes and the table if (mxTempAcc.is()) ++nCount; if (nChildIndex < 0 || nChildIndex >= nCount) throw lang::IndexOutOfBoundsException(); uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); if (xAccessible.is()) { uno::Reference xShape; bResult = mpChildrenShapes->IsSelected(nChildIndex, xShape); // throws no lang::IndexOutOfBoundsException if Index is too high } else { if (mxTempAcc.is() && nChildIndex == nCount) bResult = true; else bResult = IsTableSelected(); } } return bResult; } void SAL_CALL ScAccessibleDocument::clearAccessibleSelection( ) { SolarMutexGuard aGuard; IsObjectValid(); if (mpChildrenShapes) mpChildrenShapes->DeselectAll(); //deselects all (also the table) } void SAL_CALL ScAccessibleDocument::selectAllAccessibleChildren( ) { SolarMutexGuard aGuard; IsObjectValid(); if (mpChildrenShapes) mpChildrenShapes->SelectAll(); // select table after shapes, because while selecting shapes the table will be deselected if (mpViewShell) { mpViewShell->SelectAll(); } } sal_Int32 SAL_CALL ScAccessibleDocument::getSelectedAccessibleChildCount( ) { SolarMutexGuard aGuard; IsObjectValid(); sal_Int32 nCount(0); if (mpChildrenShapes) nCount = mpChildrenShapes->GetSelectedCount(); if (IsTableSelected()) ++nCount; if (mxTempAcc.is()) ++nCount; return nCount; } uno::Reference SAL_CALL ScAccessibleDocument::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) { SolarMutexGuard aGuard; IsObjectValid(); uno::Reference xAccessible; if (mpChildrenShapes) { sal_Int32 nCount(getSelectedAccessibleChildCount()); //all shapes and the table if (nSelectedChildIndex < 0 || nSelectedChildIndex >= nCount) throw lang::IndexOutOfBoundsException(); bool bTabMarked(IsTableSelected()); if (mpChildrenShapes) xAccessible = mpChildrenShapes->GetSelected(nSelectedChildIndex, bTabMarked); // throws no lang::IndexOutOfBoundsException if Index is too high if (mxTempAcc.is() && nSelectedChildIndex == nCount - 1) xAccessible = mxTempAcc; else if (bTabMarked) xAccessible = GetAccessibleSpreadsheet(); } OSL_ENSURE(xAccessible.is(), "here should always be an accessible object or an exception thrown"); return xAccessible; } void SAL_CALL ScAccessibleDocument::deselectAccessibleChild( sal_Int32 nChildIndex ) { SolarMutexGuard aGuard; IsObjectValid(); if (!(mpChildrenShapes && mpViewShell)) return; sal_Int32 nCount(mpChildrenShapes->GetCount()); // all shapes and the table if (mxTempAcc.is()) ++nCount; if (nChildIndex < 0 || nChildIndex >= nCount) throw lang::IndexOutOfBoundsException(); bool bTabMarked(IsTableSelected()); uno::Reference < XAccessible > xAccessible = mpChildrenShapes->Get(nChildIndex); if (xAccessible.is()) { mpChildrenShapes->Deselect(nChildIndex); // throws no lang::IndexOutOfBoundsException if Index is too high if (bTabMarked) mpViewShell->SelectAll(); // select the table again } else if (bTabMarked) mpViewShell->Unmark(); } //===== XServiceInfo ==================================================== OUString SAL_CALL ScAccessibleDocument::getImplementationName() { return "ScAccessibleDocument"; } uno::Sequence< OUString> SAL_CALL ScAccessibleDocument::getSupportedServiceNames() { const css::uno::Sequence vals { "com.sun.star.AccessibleSpreadsheetDocumentView" }; return comphelper::concatSequences(ScAccessibleContextBase::getSupportedServiceNames(), vals); } //===== XTypeProvider ======================================================= uno::Sequence< uno::Type > SAL_CALL ScAccessibleDocument::getTypes() { return comphelper::concatSequences(ScAccessibleDocumentImpl::getTypes(), ScAccessibleContextBase::getTypes()); } uno::Sequence SAL_CALL ScAccessibleDocument::getImplementationId() { return css::uno::Sequence(); } ///===== IAccessibleViewForwarder ======================================== tools::Rectangle ScAccessibleDocument::GetVisibleArea_Impl() const { tools::Rectangle aVisRect(GetBoundingBox()); if (mpViewShell) { Point aPoint(mpViewShell->GetViewData().GetPixPos(meSplitPos)); // returns a negative Point aPoint.setX(-aPoint.getX()); aPoint.setY(-aPoint.getY()); aVisRect.SetPos(aPoint); ScGridWindow* pWin = static_cast(mpViewShell->GetWindowByPos(meSplitPos)); if (pWin) aVisRect = pWin->PixelToLogic(aVisRect, pWin->GetDrawMapMode()); } return aVisRect; } tools::Rectangle ScAccessibleDocument::GetVisibleArea() const { SolarMutexGuard aGuard; IsObjectValid(); return maVisArea; } Point ScAccessibleDocument::LogicToPixel (const Point& rPoint) const { SolarMutexGuard aGuard; IsObjectValid(); Point aPoint; ScGridWindow* pWin = static_cast(mpViewShell->GetWindowByPos(meSplitPos)); if (pWin) { aPoint = pWin->LogicToPixel(rPoint, pWin->GetDrawMapMode()); aPoint += pWin->GetWindowExtentsRelative(nullptr).TopLeft(); } return aPoint; } Size ScAccessibleDocument::LogicToPixel (const Size& rSize) const { SolarMutexGuard aGuard; IsObjectValid(); Size aSize; ScGridWindow* pWin = static_cast(mpViewShell->GetWindowByPos(meSplitPos)); if (pWin) aSize = pWin->LogicToPixel(rSize, pWin->GetDrawMapMode()); return aSize; } //===== internal ======================================================== rtl::Reference ScAccessibleDocument::GetRelationSet(const ScAddress* pAddress) const { rtl::Reference pRelationSet; if (mpChildrenShapes) pRelationSet = mpChildrenShapes->GetRelationSet(pAddress); return pRelationSet; } OUString ScAccessibleDocument::createAccessibleDescription() { return STR_ACC_DOC_DESCR; } OUString ScAccessibleDocument::createAccessibleName() { SolarMutexGuard aGuard; IsObjectValid(); OUString sName = ScResId(STR_ACC_DOC_NAME); sal_Int32 nNumber(sal_Int32(meSplitPos) + 1); sName += OUString::number(nNumber); return sName; } tools::Rectangle ScAccessibleDocument::GetBoundingBoxOnScreen() const { tools::Rectangle aRect; if (mpViewShell) { vcl::Window* pWindow = mpViewShell->GetWindowByPos(meSplitPos); if (pWindow) aRect = pWindow->GetWindowExtentsRelative(nullptr); } return aRect; } tools::Rectangle ScAccessibleDocument::GetBoundingBox() const { tools::Rectangle aRect; if (mpViewShell) { vcl::Window* pWindow = mpViewShell->GetWindowByPos(meSplitPos); if (pWindow) aRect = pWindow->GetWindowExtentsRelative(pWindow->GetAccessibleParentWindow()); } return aRect; } SCTAB ScAccessibleDocument::getVisibleTable() const { SCTAB nVisibleTable(0); if (mpViewShell) nVisibleTable = mpViewShell->GetViewData().GetTabNo(); return nVisibleTable; } uno::Reference < XAccessible > ScAccessibleDocument::GetAccessibleSpreadsheet() { if (!mpAccessibleSpreadsheet.is() && mpViewShell) { mpAccessibleSpreadsheet = new ScAccessibleSpreadsheet(this, mpViewShell, getVisibleTable(), meSplitPos); mpAccessibleSpreadsheet->Init(); mbCompleteSheetSelected = IsTableSelected(); } return mpAccessibleSpreadsheet; } void ScAccessibleDocument::FreeAccessibleSpreadsheet() { if (mpAccessibleSpreadsheet.is()) { mpAccessibleSpreadsheet->dispose(); mpAccessibleSpreadsheet.clear(); } } bool ScAccessibleDocument::IsTableSelected() const { bool bResult (false); if(mpViewShell) { SCTAB nTab(getVisibleTable()); //#103800#; use a copy of MarkData ScMarkData aMarkData(mpViewShell->GetViewData().GetMarkData()); ScDocument* pDoc = GetDocument(); if (aMarkData.IsAllMarked( ScRange( 0, 0, nTab, pDoc->MaxCol(), pDoc->MaxRow(), nTab))) bResult = true; } return bResult; } bool ScAccessibleDocument::IsDefunc( const uno::Reference& rxParentStates) { return ScAccessibleContextBase::IsDefunc() || (mpViewShell == nullptr) || !getAccessibleParent().is() || (rxParentStates.is() && rxParentStates->contains(AccessibleStateType::DEFUNC)); } void ScAccessibleDocument::AddChild(const uno::Reference& xAcc, bool bFireEvent) { OSL_ENSURE(!mxTempAcc.is(), "this object should be removed before"); if (xAcc.is()) { mxTempAcc = xAcc; if( bFireEvent ) { AccessibleEventObject aEvent; aEvent.Source = uno::Reference(this); aEvent.EventId = AccessibleEventId::CHILD; aEvent.NewValue <<= mxTempAcc; CommitChange( aEvent ); } } } void ScAccessibleDocument::RemoveChild(const uno::Reference& xAcc, bool bFireEvent) { OSL_ENSURE(mxTempAcc.is(), "this object should be added before"); if (!xAcc.is()) return; OSL_ENSURE(xAcc.get() == mxTempAcc.get(), "only the same object should be removed"); if( bFireEvent ) { AccessibleEventObject aEvent; aEvent.Source = uno::Reference(this); aEvent.EventId = AccessibleEventId::CHILD; aEvent.OldValue <<= mxTempAcc; CommitChange( aEvent ); } mxTempAcc = nullptr; } OUString ScAccessibleDocument::GetCurrentCellName() const { OUString sName(ScResId(STR_ACC_CELL_NAME)); if (mpViewShell) { // Document not needed, because only the cell address, but not the tablename is needed OUString sAddress(mpViewShell->GetViewData().GetCurPos().Format(ScRefFlags::VALID)); sName = sName.replaceFirst("%1", sAddress); } return sName; } OUString ScAccessibleDocument::GetCurrentCellDescription() { return OUString(); } ScDocument *ScAccessibleDocument::GetDocument() const { return mpViewShell ? &mpViewShell->GetViewData().GetDocument() : nullptr; } ScAddress ScAccessibleDocument::GetCurCellAddress() const { return mpViewShell ? mpViewShell->GetViewData().GetCurPos() : ScAddress(); } uno::Any SAL_CALL ScAccessibleDocument::getExtendedAttributes() { SolarMutexGuard g; uno::Any anyAttribute; sal_uInt16 sheetIndex; OUString sSheetName; sheetIndex = getVisibleTable(); if(GetDocument()==nullptr) return anyAttribute; GetDocument()->GetName(sheetIndex,sSheetName); OUString sValue = "page-name:" + sSheetName + ";page-number:" + OUString::number(sheetIndex+1) + ";total-pages:" + OUString::number(GetDocument()->GetTableCount()) + ";"; anyAttribute <<= sValue; return anyAttribute; } sal_Int32 SAL_CALL ScAccessibleDocument::getForeground( ) { return sal_Int32(COL_BLACK); } sal_Int32 SAL_CALL ScAccessibleDocument::getBackground( ) { SolarMutexGuard aGuard; IsObjectValid(); return sal_Int32(SC_MOD()->GetColorConfig().GetColorValue( ::svtools::DOCCOLOR ).nColor); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ranslations/diff/source/gl/forms/source/resource.po?h=cp-5.3-66&id=6374c7e5df4654df346aea70692605c372d030cb'>source/gl/forms/source/resource.po8
-rw-r--r--source/gl/formula/source/core/resource.po4
-rw-r--r--source/gl/formula/uiconfig/ui.po10
-rw-r--r--source/gl/fpicker/uiconfig/ui.po10
-rw-r--r--source/gl/framework/source/classes.po8
-rw-r--r--source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po230
-rw-r--r--source/gl/reportdesign/source/ui/inspection.po14
-rw-r--r--source/gl/sc/source/ui/dbgui.po8
-rw-r--r--source/gl/scp2/source/ooo.po14
-rw-r--r--source/gl/sd/source/core.po14
-rw-r--r--source/gl/sd/source/ui/animations.po38
-rw-r--r--source/gl/sd/source/ui/app.po24
-rw-r--r--source/gl/sd/uiconfig/sdraw/ui.po14
-rw-r--r--source/gl/sd/uiconfig/simpress/ui.po160
-rw-r--r--source/gl/sfx2/source/appl.po8
-rw-r--r--source/gl/sfx2/source/dialog.po96
-rw-r--r--source/gl/sfx2/source/doc.po10
-rw-r--r--source/gl/sfx2/source/sidebar.po12
-rw-r--r--source/gl/sfx2/source/view.po14
-rw-r--r--source/gl/sfx2/uiconfig/ui.po52
-rw-r--r--source/gl/starmath/source.po26
-rw-r--r--source/gl/svtools/source/java.po8
-rw-r--r--source/gl/svtools/source/misc.po10
-rw-r--r--source/gl/svtools/uiconfig/ui.po10
-rw-r--r--source/gl/svx/source/dialog.po252
-rw-r--r--source/gl/svx/source/form.po60
-rw-r--r--source/gl/svx/source/src.po8
-rw-r--r--source/gl/svx/source/stbctrls.po8
-rw-r--r--source/gl/svx/source/svdraw.po9
-rw-r--r--source/gl/svx/source/tbxctrls.po18
-rw-r--r--source/gl/svx/uiconfig/ui.po289
-rw-r--r--source/gl/sw/source/core/undo.po12
-rw-r--r--source/gl/sw/source/core/unocore.po8
-rw-r--r--source/gl/sw/source/ui/app.po84
-rw-r--r--source/gl/sw/source/ui/index.po16
-rw-r--r--source/gl/sw/source/ui/misc.po56
-rw-r--r--source/gl/sw/source/ui/sidebar.po18
-rw-r--r--source/gl/sw/source/ui/utlui.po38
-rw-r--r--source/gl/sw/source/uibase/ribbar.po12
-rw-r--r--source/gl/sw/source/uibase/utlui.po12
-rw-r--r--source/gl/sw/uiconfig/swriter/ui.po510
-rw-r--r--source/gl/swext/mediawiki/help.po78
-rw-r--r--source/gl/uui/uiconfig/ui.po8
-rw-r--r--source/gl/vcl/source/src.po14
-rw-r--r--source/gl/xmlsecurity/uiconfig/ui.po10
-rw-r--r--source/he/chart2/uiconfig/ui.po11
-rw-r--r--source/he/cui/uiconfig/ui.po12
-rw-r--r--source/he/extensions/source/propctrlr.po8
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po85
-rw-r--r--source/he/reportdesign/source/ui/inspection.po34
-rw-r--r--source/he/reportdesign/source/ui/report.po12
-rw-r--r--source/he/reportdesign/uiconfig/dbreport/ui.po14
-rw-r--r--source/he/sc/source/ui/styleui.po16
-rw-r--r--source/he/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/he/sd/source/ui/app.po6
-rw-r--r--source/he/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/he/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/he/sfx2/source/dialog.po8
-rw-r--r--source/he/sfx2/uiconfig/ui.po6
-rw-r--r--source/he/svl/source/misc.po12
-rw-r--r--source/he/svx/source/form.po8
-rw-r--r--source/he/svx/uiconfig/ui.po8
-rw-r--r--source/he/sw/source/core/undo.po6
-rw-r--r--source/he/sw/source/ui/app.po28
-rw-r--r--source/he/sw/source/ui/config.po6
-rw-r--r--source/he/sw/source/ui/dbui.po6
-rw-r--r--source/he/sw/source/uibase/docvw.po8
-rw-r--r--source/he/sw/source/uibase/lingu.po24
-rw-r--r--source/he/sw/source/uibase/ribbar.po30
-rw-r--r--source/he/sw/source/uibase/uiview.po8
-rw-r--r--source/he/sw/source/uibase/utlui.po6
-rw-r--r--source/he/sw/uiconfig/swriter/ui.po38
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po20
-rw-r--r--source/hu/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/id/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/id/helpcontent2/source/text/shared.po14
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/id/helpcontent2/source/text/smath.po10
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po11
-rw-r--r--source/nb/formula/source/core/resource.po4
-rw-r--r--source/nl/formula/source/core/resource.po4
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/nl/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po24
-rw-r--r--source/nl/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/nl/sd/source/ui/app.po10
-rw-r--r--source/nl/sd/uiconfig/sdraw/ui.po10
-rw-r--r--source/nl/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/nn/filter/source/config/fragments/filters.po14
-rw-r--r--source/nn/filter/source/config/fragments/internalgraphicfilters.po10
-rw-r--r--source/nn/filter/uiconfig/ui.po8
-rw-r--r--source/nn/forms/source/resource.po8
-rw-r--r--source/nn/formula/source/core/resource.po12
-rw-r--r--source/nn/formula/uiconfig/ui.po10
-rw-r--r--source/nn/fpicker/uiconfig/ui.po10
-rw-r--r--source/nn/framework/source/classes.po8
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/nn/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po521
-rw-r--r--source/nn/sc/source/ui/src.po48
-rw-r--r--source/nn/sc/source/ui/styleui.po22
-rw-r--r--source/nn/sc/uiconfig/scalc/ui.po583
-rw-r--r--source/nn/sfx2/source/sidebar.po8
-rw-r--r--source/nn/svx/uiconfig/ui.po10
-rw-r--r--source/nn/sw/source/core/undo.po12
-rw-r--r--source/oc/cui/source/dialogs.po6
-rw-r--r--source/oc/cui/source/options.po106
-rw-r--r--source/oc/cui/source/tabpages.po10
-rw-r--r--source/oc/cui/uiconfig/ui.po90
-rw-r--r--source/oc/dbaccess/source/ui/querydesign.po14
-rw-r--r--source/oc/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/oc/desktop/uiconfig/ui.po16
-rw-r--r--source/oc/extensions/source/bibliography.po10
-rw-r--r--source/oc/extensions/source/propctrlr.po152
-rw-r--r--source/oc/fpicker/uiconfig/ui.po10
-rw-r--r--source/oc/framework/source/classes.po10
-rw-r--r--source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po374
-rw-r--r--source/oc/readlicense_oo/docs.po10
-rw-r--r--source/oc/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/pl/avmedia/source/framework.po12
-rw-r--r--source/pl/basctl/source/basicide.po16
-rw-r--r--source/pl/chart2/uiconfig/ui.po26
-rw-r--r--source/pl/cui/source/dialogs.po16
-rw-r--r--source/pl/cui/source/options.po174
-rw-r--r--source/pl/cui/source/tabpages.po16
-rw-r--r--source/pl/cui/uiconfig/ui.po20
-rw-r--r--source/pl/dbaccess/source/ui/app.po10
-rw-r--r--source/pl/dbaccess/source/ui/querydesign.po14
-rw-r--r--source/pl/dbaccess/source/ui/tabledesign.po10
-rw-r--r--source/pl/extensions/source/bibliography.po12
-rw-r--r--source/pl/extensions/source/propctrlr.po260
-rw-r--r--source/pl/filter/source/config/fragments/filters.po14
-rw-r--r--source/pl/forms/source/resource.po10
-rw-r--r--source/pl/formula/source/core/resource.po12
-rw-r--r--source/pl/formula/uiconfig/ui.po12
-rw-r--r--source/pl/framework/source/classes.po8
-rw-r--r--source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/pl/reportdesign/source/ui/inspection.po66
-rw-r--r--source/pl/reportdesign/uiconfig/dbreport/ui.po20
-rw-r--r--source/pl/scp2/source/ooo.po14
-rw-r--r--source/pl/sfx2/source/appl.po10
-rw-r--r--source/pl/sfx2/source/dialog.po98
-rw-r--r--source/pl/sfx2/source/doc.po10
-rw-r--r--source/pl/sfx2/source/sidebar.po14
-rw-r--r--source/pl/sfx2/source/view.po12
-rw-r--r--source/pl/sfx2/uiconfig/ui.po50
-rw-r--r--source/pl/starmath/source.po26
-rw-r--r--source/pl/svtools/source/java.po10
-rw-r--r--source/pl/svtools/source/misc.po12
-rw-r--r--source/pl/svtools/uiconfig/ui.po12
-rw-r--r--source/pl/svx/source/dialog.po228
-rw-r--r--source/pl/svx/source/form.po20
-rw-r--r--source/pl/svx/uiconfig/ui.po57
-rw-r--r--source/pl/sw/source/core/undo.po14
-rw-r--r--source/pl/sw/source/core/unocore.po8
-rw-r--r--source/pl/sw/source/ui/app.po84
-rw-r--r--source/pl/sw/source/ui/index.po18
-rw-r--r--source/pl/sw/source/ui/misc.po58
-rw-r--r--source/pl/sw/source/ui/sidebar.po20
-rw-r--r--source/pl/sw/source/ui/utlui.po38
-rw-r--r--source/pl/sw/source/uibase/ribbar.po14
-rw-r--r--source/pl/sw/source/uibase/utlui.po14
-rw-r--r--source/pl/sw/uiconfig/swriter/ui.po242
-rw-r--r--source/pl/uui/uiconfig/ui.po10
-rw-r--r--source/pl/xmlsecurity/uiconfig/ui.po10
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po36
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/pt/helpcontent2/source/text/schart/01.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared.po14
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po34
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po80
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/ru/cui/uiconfig/ui.po14
-rw-r--r--source/ru/formula/source/core/resource.po116
-rw-r--r--source/sv/chart2/uiconfig/ui.po28
-rw-r--r--source/sv/formula/uiconfig/ui.po12
-rw-r--r--source/sv/fpicker/uiconfig/ui.po10
-rw-r--r--source/sv/framework/source/classes.po8
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/sv/sfx2/uiconfig/ui.po10
-rw-r--r--source/sv/starmath/source.po14
-rw-r--r--source/sv/svtools/uiconfig/ui.po10
-rw-r--r--source/sv/svx/uiconfig/ui.po19
-rw-r--r--source/sv/vcl/source/src.po14
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/tr/basctl/uiconfig/basicide/ui.po10
-rw-r--r--source/tr/cui/source/dialogs.po6
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po9
-rw-r--r--source/tr/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/tr/helpcontent2/source/text/shared/explorer/database.po13
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po38
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po34
-rw-r--r--source/uk/cui/uiconfig/ui.po6
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po158
-rw-r--r--source/uk/sc/source/ui/src.po74
-rw-r--r--source/uk/sc/source/ui/styleui.po22
-rw-r--r--source/uk/sc/uiconfig/scalc/ui.po587
-rw-r--r--source/uk/sd/source/core.po16
-rw-r--r--source/uk/sd/source/ui/animations.po40
-rw-r--r--source/uk/sd/source/ui/app.po26
-rw-r--r--source/uk/sd/uiconfig/sdraw/ui.po16
-rw-r--r--source/uk/sd/uiconfig/simpress/ui.po248
-rw-r--r--source/uk/sfx2/source/appl.po10
-rw-r--r--source/uk/sfx2/source/dialog.po98
-rw-r--r--source/uk/sfx2/source/doc.po12
-rw-r--r--source/uk/sfx2/source/sidebar.po14
-rw-r--r--source/uk/sfx2/source/view.po14
-rw-r--r--source/uk/sfx2/uiconfig/ui.po54
-rw-r--r--source/uk/svx/source/dialog.po254
-rw-r--r--source/uk/svx/source/form.po60
-rw-r--r--source/uk/svx/source/src.po10
-rw-r--r--source/uk/svx/source/stbctrls.po10
-rw-r--r--source/uk/svx/source/tbxctrls.po20
-rw-r--r--source/uk/svx/uiconfig/ui.po224
-rw-r--r--source/uk/sw/uiconfig/swriter/ui.po84
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po222
-rw-r--r--source/vec/sc/source/ui/dbgui.po8
-rw-r--r--source/vec/sc/source/ui/src.po8
-rw-r--r--source/vec/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/vec/svx/uiconfig/ui.po6
-rw-r--r--source/vec/sw/source/ui/shells.po14
-rw-r--r--source/vec/sw/uiconfig/swriter/ui.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po27
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/01.po28
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office.po32
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/zh-CN/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/zh-CN/sysui/desktop/share.po10
-rw-r--r--source/zh-TW/chart2/source/controller/dialogs.po8
-rw-r--r--source/zh-TW/cui/source/tabpages.po12
-rw-r--r--source/zh-TW/editeng/source/items.po12
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/zh-TW/sc/source/ui/src.po8
-rw-r--r--source/zh-TW/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/zh-TW/vcl/source/src.po8
364 files changed, 7592 insertions, 7615 deletions
diff --git a/source/am/basic/source/classes.po b/source/am/basic/source/classes.po
index 8e877d759cb..3ac5b62eb3b 100644
--- a/source/am/basic/source/classes.po
+++ b/source/am/basic/source/classes.po
@@ -4,7 +4,7 @@ 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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-12-22 23:50+0000\n"
+"PO-Revision-Date: 2017-02-16 14:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482450626.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487256700.000000\n"
#: sb.src
msgctxt ""
@@ -1157,7 +1157,7 @@ msgctxt ""
"ERRCODE_BASIC_LOOP_NOT_INIT & ERRCODE_RES_MASK\n"
"string.text"
msgid "For loop not initialized."
-msgstr "For loop not initialized."
+msgstr "ዙር አልጀመረም"
#: sb.src
msgctxt ""
diff --git a/source/am/chart2/source/controller/dialogs.po b/source/am/chart2/source/controller/dialogs.po
index 8a65b048ac1..984e0ff0dac 100644
--- a/source/am/chart2/source/controller/dialogs.po
+++ b/source/am/chart2/source/controller/dialogs.po
@@ -4,7 +4,7 @@ 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: 2017-01-30 22:31+0000\n"
+"PO-Revision-Date: 2017-02-16 21:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485815493.000000\n"
+"X-POOTLE-MTIME: 1487280481.000000\n"
#: Strings.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"STR_TIP_DATAPOINT\n"
"string.text"
msgid "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
-msgstr "Data Point %POINTNUMBER, data series %SERIESNUMBER, values: %POINTVALUES"
+msgstr "የ ዳታ ነጥብ %POINTNUMBER, ተከታታይ ዳታ %SERIESNUMBER, ዋጋዎች: %POINTVALUES"
#: Strings.src
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"STR_STATUS_DATAPOINT_MARKED\n"
"string.text"
msgid "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
-msgstr "Data point %POINTNUMBER in data series %SERIESNUMBER selected, values: %POINTVALUES"
+msgstr "የ ዳታ ነጥብ %POINTNUMBER, በ ተከታታይ ዳታ %SERIESNUMBER, በ ተመረጠው ዋጋዎች: %POINTVALUES ውስጥ"
#: Strings.src
msgctxt ""
@@ -1002,7 +1002,7 @@ msgctxt ""
"STR_TEXT_DIRECTION_SUPER\n"
"string.text"
msgid "Use superordinate object settings"
-msgstr "Use superordinate object settings"
+msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ"
#: Strings.src
msgctxt ""
@@ -1298,7 +1298,7 @@ msgctxt ""
"STR_BAD_LOGARITHM\n"
"string.text"
msgid "The logarithmic scale requires positive numbers. Check your input."
-msgstr "The logarithmic scale requires positive numbers. Check your input."
+msgstr "የ ሎጋሪዝም መጠን አዎንታዊ ቁጥር ይፈልጋል: የ እርስዎን ማስገቢያ ይመርምሩ"
#: Strings_Scale.src
msgctxt ""
@@ -1314,7 +1314,7 @@ msgctxt ""
"STR_INVALID_INTERVALS\n"
"string.text"
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."
+msgstr "ዋናው ክፍተት መብለጥ አለበት ከ አነስተኛው ክፍተት: ማስገቢያውን ይመርምሩ"
#: Strings_Scale.src
msgctxt ""
@@ -1322,7 +1322,7 @@ msgctxt ""
"STR_INVALID_TIME_UNIT\n"
"string.text"
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."
+msgstr "ዋናው ክፍተት እና አነስተኛው ክፍተት መብለጥ ወይንም እኩል መሆን አለበት ከ ውጤቱ ጋር: ማስገቢያውን ይመርምሩ"
#: Strings_Statistic.src
msgctxt ""
diff --git a/source/am/connectivity/source/resource.po b/source/am/connectivity/source/resource.po
index 08d01eed236..02579ea1a48 100644
--- a/source/am/connectivity/source/resource.po
+++ b/source/am/connectivity/source/resource.po
@@ -4,7 +4,7 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-12-23 00:14+0000\n"
+"PO-Revision-Date: 2017-02-16 21:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482452071.000000\n"
+"X-POOTLE-MTIME: 1487281116.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"STR_NO_COUNT_SUPPORT\n"
"string.text"
msgid "The driver does not support the 'COUNT' function."
-msgstr "The driver does not support the 'COUNT' function."
+msgstr "ይህ አካል 'መቁጠሪያ' ተግባር አይደግፍም"
#: conn_shared_res.src
msgctxt ""
@@ -208,7 +208,7 @@ msgctxt ""
"STR_STMT_TYPE_NOT_SUPPORTED\n"
"string.text"
msgid "This statement type not supported by this database driver."
-msgstr "This statement type not supported by this database driver."
+msgstr "የዚህ አይነት አረፍተ ነገር ዳታቤዝ ውስጥ የ ተደገፈ አይደለም"
#: conn_shared_res.src
msgctxt ""
@@ -352,7 +352,7 @@ msgctxt ""
"STR_INPUTSTREAM_WRONG_LEN\n"
"string.text"
msgid "End of InputStream reached before satisfying length specified when InputStream was set."
-msgstr "End of InputStream reached before satisfying length specified when InputStream was set."
+msgstr "የ ማስገቢያ ማስተላለፊያ ጨርሷል የ ተወሰነው እርዝመት ላይ ሳይደርስ: የ ማስገቢያ ማስተላለፊያ ሲሰናዳ"
#: conn_shared_res.src
msgctxt ""
@@ -384,7 +384,7 @@ msgctxt ""
"STR_PRIVILEGE_NOT_GRANTED\n"
"string.text"
msgid "Privilege not granted: Only table privileges can be granted."
-msgstr "Privilege not granted: Only table privileges can be granted."
+msgstr "ቅድሚያ አልተሰጠም: የ ሰንጠረዥ ቅድሚያ ብቻ የ ተሰጠው"
#: conn_shared_res.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"STR_PRIVILEGE_NOT_REVOKED\n"
"string.text"
msgid "Privilege not revoked: Only table privileges can be revoked."
-msgstr "Privilege not revoked: Only table privileges can be revoked."
+msgstr "ቅድሚያ ተነጥቋል: የ ሰንጠረዥ ቅድሚያ ብቻ መንጠቅ የሚቻለው"
#: conn_shared_res.src
msgctxt ""
@@ -424,7 +424,7 @@ msgctxt ""
"STR_UNSUPPORTED_FUNCTION\n"
"string.text"
msgid "The driver does not support the function '$functionname$'."
-msgstr "The driver does not support the function '$functionname$'."
+msgstr "አካሉ ተግባሩን አይደግፍም '$functionname$'."
#: conn_shared_res.src
msgctxt ""
@@ -432,7 +432,7 @@ msgctxt ""
"STR_UNSUPPORTED_FEATURE\n"
"string.text"
msgid "The driver does not support the functionality for '$featurename$'. It is not implemented."
-msgstr "The driver does not support the functionality for '$featurename$'. It is not implemented."
+msgstr "አካሉ ተግባሩን አይደግፍም ለ '$featurename$'. መፈጸም አይቻልም"
#: conn_shared_res.src
msgctxt ""
@@ -448,7 +448,7 @@ msgctxt ""
"STR_STRING_LENGTH_EXCEEDED\n"
"string.text"
msgid "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
-msgstr "The string '$string$' exceeds the maximum length of $maxlen$ characters when converted to the target character set '$charset$'."
+msgstr "ይህ ሀረግ '$string$' ከፍተኛውን እርዝመት አልፏል የ $maxlen$ ባህሪዎች በሚቀየር ጊዜ ወደ የታለመው ባህሪ ማሰናጃ '$charset$'."
#: conn_shared_res.src
msgctxt ""
@@ -488,7 +488,7 @@ msgctxt ""
"STR_QUERY_INVALID_LIKE_COLUMN\n"
"string.text"
msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type."
-msgstr "The query can not be executed. You cannot use 'LIKE' with columns of this type."
+msgstr "ጥያቄውን መፈጸም አልተቻለም: እርስዎ መጠቀም አይችሉም 'የምወዳቸ' በዚህ አይነት አምዶች ውስጥ"
#: conn_shared_res.src
msgctxt ""
@@ -496,7 +496,7 @@ msgctxt ""
"STR_QUERY_INVALID_LIKE_STRING\n"
"string.text"
msgid "The query can not be executed. 'LIKE' can be used with a string argument only."
-msgstr "The query can not be executed. 'LIKE' can be used with a string argument only."
+msgstr "ጥያቄውን መፈጸም አልተቻለም: እርስዎ መጠቀም ይችላሉ 'የምወዳቸ' በ ሀረግ ክርክሮች ውስጥ ብቻ"
#: conn_shared_res.src
msgctxt ""
@@ -504,7 +504,7 @@ msgctxt ""
"STR_QUERY_NOT_LIKE_TOO_COMPLEX\n"
"string.text"
msgid "The query can not be executed. The 'NOT LIKE' condition is too complex."
-msgstr "The query can not be executed. The 'NOT LIKE' condition is too complex."
+msgstr "ጥያቄውን መፈጸም አልተቻለም: የ 'እኔ አልወደውም' አፈጻጸሙ በጣም ውስብስብ ነው"
#: conn_shared_res.src
msgctxt ""
@@ -520,7 +520,7 @@ msgctxt ""
"STR_QUERY_LIKE_WILDCARD_MANY\n"
"string.text"
msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards."
-msgstr "The query can not be executed. The 'LIKE' condition contains too many wildcards."
+msgstr "ጥያቄውን መፈጸም አልተቻለም: ይህ 'የምወደው' አፈጻጸሙ በጣም ብዙ ሁለገብ ነው"
#: conn_shared_res.src
msgctxt ""
@@ -770,9 +770,9 @@ msgid ""
"\n"
"The specified value \"$value$ is longer than the number of digits allowed."
msgstr ""
-"The '$columnname$' column has been defined as a \"Decimal\" type, the max. length is $precision$ characters (with $scale$ decimal places).\n"
+"ይህ '$columnname$' አምድ የ ተገለጸው እንደ \"ዴሲማል\" አይነት ነው: ከፍተኛው እርዝመት ነው ለ $precision$ ባህሪዎች (with $scale$ decimal places).\n"
"\n"
-"The specified value \"$value$ is longer than the number of digits allowed."
+"የ ተገለጸው ዋጋ \"$value$ ከሚፈቀደው ቁጥር አሀዝ በላይ ነው"
#: conn_shared_res.src
msgctxt ""
@@ -804,7 +804,7 @@ msgctxt ""
"STR_COLUMN_NOT_DROP\n"
"string.text"
msgid "The column at position '$position$' could not be dropped. May be the file system is write protected."
-msgstr "The column at position '$position$' could not be dropped. May be the file system is write protected."
+msgstr "አምድ በዚህ ቦታ '$position$' መጣል አይቻልም: ምናልባት የ ፋይል ስርአቱ በ ላዩ ላይ እንዳይጻፍ የሚጠበቅ ይሆናል"
#: conn_shared_res.src
msgctxt ""
@@ -812,7 +812,7 @@ msgctxt ""
"STR_TABLE_NOT_DROP\n"
"string.text"
msgid "The table '$tablename$' could not be dropped. May be the file system is write protected."
-msgstr "The table '$tablename$' could not be dropped. May be the file system is write protected."
+msgstr "ይህን ሰንጠረዥ '$tablename$' መጣል አይቻልም: ምናልባት የ ፋይል ስርአቱ በ ላዩ ላይ እንዳይጻፍ የሚጠበቅ ይሆናል"
#: conn_shared_res.src
msgctxt ""
@@ -924,7 +924,7 @@ msgctxt ""
"STR_INVALID_PARA_COUNT\n"
"string.text"
msgid "The count of the given parameter values doesn't match the parameters."
-msgstr "The count of the given parameter values doesn't match the parameters."
+msgstr "የ ተሰጠው የ ደንብ ዋጋዎች መቁጠሪያ ከ ደንቦች ጋር አይመሳሰልም"
#: conn_shared_res.src
msgctxt ""
@@ -940,7 +940,7 @@ msgctxt ""
"STR_NO_CLASSNAME\n"
"string.text"
msgid "The driver class '$classname$' could not be loaded."
-msgstr "The driver class '$classname$' could not be loaded."
+msgstr "የ አካሉን ክፍል '$classname$' መጫን አልተቻለም"
#: conn_shared_res.src
msgctxt ""
@@ -948,7 +948,7 @@ msgctxt ""
"STR_NO_JAVA\n"
"string.text"
msgid "No Java installation could be found. Please check your installation."
-msgstr "No Java installation could be found. Please check your installation."
+msgstr "ምንም የ Java መግጠሚያ አልተገኘም: እባክዎን የ እርስዎን አገጣጠም ይምረጡ"
#: conn_shared_res.src
msgctxt ""
diff --git a/source/am/cui/source/dialogs.po b/source/am/cui/source/dialogs.po
index bc83ecc60ab..d8f6ed1782f 100644
--- a/source/am/cui/source/dialogs.po
+++ b/source/am/cui/source/dialogs.po
@@ -4,7 +4,7 @@ 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-12-02 22:12+0000\n"
+"PO-Revision-Date: 2017-02-16 16:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480716771.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487263237.000000\n"
#: cuires.src
msgctxt ""
@@ -631,7 +631,7 @@ msgctxt ""
"RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED\n"
"string.text"
msgid "The scripting language %LANGUAGENAME is not supported."
-msgstr "The scripting language %LANGUAGENAME is not supported."
+msgstr "የ ጽሁፍ ቋንቋው %LANGUAGENAME የ ተደገፈ አይደለም"
#: scriptdlg.src
msgctxt ""
diff --git a/source/am/cui/source/options.po b/source/am/cui/source/options.po
index 28032150d30..231639fe183 100644
--- a/source/am/cui/source/options.po
+++ b/source/am/cui/source/options.po
@@ -4,7 +4,7 @@ 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: 2017-01-30 22:32+0000\n"
+"PO-Revision-Date: 2017-02-16 16:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485815558.000000\n"
+"X-POOTLE-MTIME: 1487263253.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_DRIVER_NAME\n"
"string.text"
msgid "Driver name"
-msgstr "Driver name"
+msgstr "የ አካሉ ስም"
#: connpooloptions.src
msgctxt ""
diff --git a/source/am/cui/source/tabpages.po b/source/am/cui/source/tabpages.po
index 059364f8915..c1276e151f5 100644
--- a/source/am/cui/source/tabpages.po
+++ b/source/am/cui/source/tabpages.po
@@ -4,7 +4,7 @@ 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-12-14 01:28+0000\n"
+"PO-Revision-Date: 2017-02-19 21:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481678935.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487540096.000000\n"
#: border.src
msgctxt ""
@@ -299,8 +299,8 @@ msgid ""
"The line style was modified without saving. \n"
"Modify the selected line style or add a new line style."
msgstr ""
-"የመስመር ዘዴው ተሻሽሏል ነገር ግን አልተቀመጠም \n"
-"የተመረጠውን የመስመር ዘዴ ያሻሽሉ ወይንም አዲስ የመስመር ዘዴ ይጨምሩ"
+"የ መስመር ዘዴ ተሻሽሏል ነገር ግን አልተቀመጠም \n"
+"የ ተመረጠውን የ መስመር ዘዴ ያሻሽሉ ወይንም አዲስ የ መስመር ዘዴ ይጨምሩ"
#: strings.src
msgctxt ""
@@ -320,7 +320,7 @@ msgid ""
"Modify the selected hatching type or add a new hatching type."
msgstr ""
"የ በርካታ መስመር አይነት ተሻሽሏል ነገር ግን አልተቀመጠም \n"
-"የተመረጠውን በርካታ መስመር አይነት ያሻሽሉ ወይንም አዲስ በርካታ መስመር አይነት ይጨምሩ"
+"የ ተመረጠውን በርካታ መስመር አይነት ያሻሽሉ ወይንም አዲስ በርካታ መስመር አይነት ይጨምሩ"
#: strings.src
msgctxt ""
diff --git a/source/am/cui/uiconfig/ui.po b/source/am/cui/uiconfig/ui.po
index b44262ae0b3..8948e8c62b1 100644
--- a/source/am/cui/uiconfig/ui.po
+++ b/source/am/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-30 22:32+0000\n"
+"PO-Revision-Date: 2017-02-16 21:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485815571.000000\n"
+"X-POOTLE-MTIME: 1487281680.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -8484,7 +8484,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Negative numbers red"
-msgstr "_Negative numbers red"
+msgstr "_አሉታዊ ቁጥሮች በ ቀይ"
#: numberingformatpage.ui
msgctxt ""
@@ -8619,7 +8619,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Scientific"
-msgstr "Scientific"
+msgstr "ሳይንሳዊ"
#: numberingformatpage.ui
msgctxt ""
@@ -9451,7 +9451,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use te_xt selection cursor in read-only text documents"
-msgstr "Use te_xt selection cursor in read-only text documents"
+msgstr "ይጠቀሙ የ ጽሁ_ፍ ምርጫ መጠቆሚያ ለ ንባብ-ብቻ ለ ጽሁፍ ሰነዶች"
#: optaccessibilitypage.ui
msgctxt ""
diff --git a/source/am/dbaccess/source/core/resource.po b/source/am/dbaccess/source/core/resource.po
index 908ec1a84f3..753f796c1b9 100644
--- a/source/am/dbaccess/source/core/resource.po
+++ b/source/am/dbaccess/source/core/resource.po
@@ -4,7 +4,7 @@ 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: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2016-12-02 22:15+0000\n"
+"PO-Revision-Date: 2017-02-16 21:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480716935.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487281854.000000\n"
#: strings.src
msgctxt ""
@@ -162,7 +162,7 @@ msgctxt ""
"RID_STR_NO_CONDITION_FOR_PK\n"
"string.text"
msgid "The WHERE condition could not be created for the primary key."
-msgstr "The WHERE condition could not be created for the primary key."
+msgstr "የ የት ሁኔታ መፍጠራይቻልም ለ ቀዳሚ ቁልፍ"
#: strings.src
msgctxt ""
diff --git a/source/am/dbaccess/source/ui/app.po b/source/am/dbaccess/source/ui/app.po
index 73708cfd05d..72e58e594bc 100644
--- a/source/am/dbaccess/source/ui/app.po
+++ b/source/am/dbaccess/source/ui/app.po
@@ -4,7 +4,7 @@ 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-11-12 18:45+0000\n"
+"PO-Revision-Date: 2017-02-16 21:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1478976315.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487281951.000000\n"
#: app.src
msgctxt ""
@@ -371,7 +371,7 @@ msgctxt ""
"RID_STR_EMBEDDED_DATABASE\n"
"string.text"
msgid "Embedded database"
-msgstr "Embedded database"
+msgstr "የ ተጣበቀ ዳታቤዝ"
#: app.src
msgctxt ""
diff --git a/source/am/dbaccess/source/ui/control.po b/source/am/dbaccess/source/ui/control.po
index 8f32825719b..7f4b20a7e5c 100644
--- a/source/am/dbaccess/source/ui/control.po
+++ b/source/am/dbaccess/source/ui/control.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-15 22:38+0000\n"
+"PO-Revision-Date: 2017-02-16 21:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479249531.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487281989.000000\n"
#: TableGrantCtrl.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_NOREGISTEREDDRIVER\n"
"string.text"
msgid "A driver is not registered for the URL #connurl#."
-msgstr "A driver is not registered for the URL #connurl#."
+msgstr "አካሉ አልተመዘገበም ለ URL #connurl#."
#: tabletree.src
msgctxt ""
diff --git a/source/am/dbaccess/source/ui/dlg.po b/source/am/dbaccess/source/ui/dlg.po
index 4753a6fb465..f24c5785b80 100644
--- a/source/am/dbaccess/source/ui/dlg.po
+++ b/source/am/dbaccess/source/ui/dlg.po
@@ -4,7 +4,7 @@ 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: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2016-12-02 22:16+0000\n"
+"PO-Revision-Date: 2017-02-16 21:54+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480717004.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487282087.000000\n"
#: AutoControls.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_DBASE_PATH_OR_FILE\n"
"string.text"
msgid "Path to the dBASE files"
-msgstr "Path to the dBASE files"
+msgstr "መንገድ ወደ የ dBASE ፋይሎች"
#: AutoControls.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_MYSQL_DATABASE_NAME\n"
"string.text"
msgid "Name of the MySQL database"
-msgstr "Name of the MySQL database"
+msgstr "ስም ለ MySQL ዳታቤዝ"
#: AutoControls.src
msgctxt ""
@@ -299,7 +299,7 @@ msgctxt ""
"STR_AUTONO_WILDCARDS\n"
"string.text"
msgid "Wildcards such as ?,* are not allowed in #1."
-msgstr "Wildcards such as ?,* are not allowed in #1."
+msgstr "ሁለገብ እንደ የ ?,* ያሉ አይፈቀድም በ #1."
#: dbadmin2.src
msgctxt ""
diff --git a/source/am/editeng/source/items.po b/source/am/editeng/source/items.po
index a00683d540a..46e22959813 100644
--- a/source/am/editeng/source/items.po
+++ b/source/am/editeng/source/items.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2017-01-26 02:42+0000\n"
+"PO-Revision-Date: 2017-02-16 22:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485398563.000000\n"
+"X-POOTLE-MTIME: 1487282495.000000\n"
#: page.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"RID_SVXITEMS_COLOR_CYAN\n"
"string.text"
msgid "Cyan"
-msgstr "Cyan"
+msgstr "ሲያን"
#: svxitems.src
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"RID_SVXITEMS_COLOR_MAGENTA\n"
"string.text"
msgid "Magenta"
-msgstr "Magenta"
+msgstr "ማጄንታ"
#: svxitems.src
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"RID_SVXITEMS_COLOR_LIGHTCYAN\n"
"string.text"
msgid "Light Cyan"
-msgstr "Light Cyan"
+msgstr "ነጣ ያለ ሲያን"
#: svxitems.src
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"RID_SVXITEMS_COLOR_LIGHTMAGENTA\n"
"string.text"
msgid "Light Magenta"
-msgstr "Light Magenta"
+msgstr "ነጣ ያለ ማጄንታ"
#: svxitems.src
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"RID_SOLID\n"
"string.text"
msgid "Single, solid"
-msgstr "Single, solid"
+msgstr "ነጠላ: ሙሉ"
#: svxitems.src
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"RID_DOTTED\n"
"string.text"
msgid "Single, dotted"
-msgstr "Single, dotted"
+msgstr "ነጠላ: ነጠብጣብ"
#: svxitems.src
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"RID_INSET\n"
"string.text"
msgid "Inset"
-msgstr "Inset"
+msgstr "ማስገቢያ"
#: svxitems.src
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"RID_OUTSET\n"
"string.text"
msgid "Outset"
-msgstr "Outset"
+msgstr "ማውጫ"
#: svxitems.src
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"RID_SVXITEMS_METRIC_POINT\n"
"string.text"
msgid "pt"
-msgstr "pt"
+msgstr "ነጥብ"
#: svxitems.src
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"RID_SVXITEMS_METRIC_TWIP\n"
"string.text"
msgid "twip"
-msgstr "twip"
+msgstr "የ ኢንች አንድ ሀያኛ"
#: svxitems.src
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"RID_SVXITEMS_METRIC_PIXEL\n"
"string.text"
msgid "pixel"
-msgstr "pixel"
+msgstr "ፒክስልስ"
#: svxitems.src
msgctxt ""
diff --git a/source/am/editeng/source/outliner.po b/source/am/editeng/source/outliner.po
index 2218f43bee9..e58bf03eb28 100644
--- a/source/am/editeng/source/outliner.po
+++ b/source/am/editeng/source/outliner.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 14:49+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2017-02-16 22:17+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353250142.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283446.000000\n"
#: outliner.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"RID_OUTLUNDO_ATTR\n"
"string.text"
msgid "Apply attributes"
-msgstr "Apply attributes"
+msgstr "ባህሪዎች መፈጸሚያ"
#: outliner.src
msgctxt ""
diff --git a/source/am/extensions/source/bibliography.po b/source/am/extensions/source/bibliography.po
index d1f699065f0..76d6ee8894e 100644
--- a/source/am/extensions/source/bibliography.po
+++ b/source/am/extensions/source/bibliography.po
@@ -4,7 +4,7 @@ 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: 2017-01-30 22:55+0000\n"
+"PO-Revision-Date: 2017-02-16 22:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485816912.000000\n"
+"X-POOTLE-MTIME: 1487283488.000000\n"
#: bib.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"RID_BIB_STR_TABWIN_PREFIX\n"
"string.text"
msgid "Table;Query;Sql;Sql [Native]"
-msgstr "Table;Query;Sql;Sql [Native]"
+msgstr "ሰንጠረዥ:ጥያቄ:Sql;Sql [Native]"
#: bib.src
msgctxt ""
diff --git a/source/am/extensions/source/propctrlr.po b/source/am/extensions/source/propctrlr.po
index a47db31bdbb..e2dfa837684 100644
--- a/source/am/extensions/source/propctrlr.po
+++ b/source/am/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ 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: 2017-01-10 21:26+0000\n"
+"PO-Revision-Date: 2017-02-16 22:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484083585.000000\n"
+"X-POOTLE-MTIME: 1487283635.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -199,7 +199,7 @@ msgctxt ""
"RID_STR_EMPTY_IS_NULL\n"
"string.text"
msgid "Empty string is NULL"
-msgstr "Empty string is NULL"
+msgstr "ባዶ ሀረግ ባዶ ነው"
#: formres.src
msgctxt ""
@@ -207,7 +207,7 @@ msgctxt ""
"RID_STR_DECIMAL_ACCURACY\n"
"string.text"
msgid "Decimal accuracy"
-msgstr "Decimal accuracy"
+msgstr "የ ዴሲማል ትክክለኛነት"
#: formres.src
msgctxt ""
@@ -364,7 +364,7 @@ msgctxt ""
"RID_STR_SHOW_NAVIGATION\n"
"string.text"
msgid "Navigation"
-msgstr "Navigation"
+msgstr "መቃኛ"
#: formres.src
msgctxt ""
@@ -612,7 +612,7 @@ msgctxt ""
"RID_STR_MASTERFIELDS\n"
"string.text"
msgid "Link master fields"
-msgstr "Link master fields"
+msgstr "ዋና ሜዳዎችን አገናኝ"
#: formres.src
msgctxt ""
@@ -620,7 +620,7 @@ msgctxt ""
"RID_STR_SLAVEFIELDS\n"
"string.text"
msgid "Link slave fields"
-msgstr "Link slave fields"
+msgstr "ዋና ሜዳዎችን አገናኝ"
#: formres.src
msgctxt ""
@@ -2963,7 +2963,7 @@ msgctxt ""
"RID_STR_PROPTITLE_COMBOBOX\n"
"string.text"
msgid "Combo Box"
-msgstr "Combo Box"
+msgstr "መቀላቀያ ሳጥን"
#: pcrmiscres.src
msgctxt ""
@@ -3109,7 +3109,7 @@ msgctxt ""
"RID_EMBED_IMAGE_PLACEHOLDER\n"
"string.text"
msgid "<Embedded-Image>"
-msgstr "<Embedded-Image>"
+msgstr "<የ ተጣበቅ-ምስል>"
#: propres.src
msgctxt ""
diff --git a/source/am/extensions/uiconfig/scanner/ui.po b/source/am/extensions/uiconfig/scanner/ui.po
index 29db2deae80..946a90e9123 100644
--- a/source/am/extensions/uiconfig/scanner/ui.po
+++ b/source/am/extensions/uiconfig/scanner/ui.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-05-11 18:00+0000\n"
+"PO-Revision-Date: 2017-02-16 22:20+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1462989639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283655.000000\n"
#: griddialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution [_DPI]"
-msgstr "Resolution [_DPI]"
+msgstr "ሪዞሊሽን [_DPI]"
#: sanedialog.ui
msgctxt ""
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index 38ecd0d93a4..4ace0001290 100644
--- a/source/am/extras/source/autocorr/emoji.po
+++ b/source/am/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ 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-10-18 13:02+0200\n"
-"PO-Revision-Date: 2017-02-16 01:29+0000\n"
+"PO-Revision-Date: 2017-02-16 14:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487208591.000000\n"
+"X-POOTLE-MTIME: 1487256183.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4590,13 +4590,12 @@ msgstr "ሻይ"
#. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SAKE_BOTTLE_AND_CUP\n"
"LngText.text"
msgid "sake"
-msgstr "እባብ"
+msgstr "sake"
#. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5500,13 +5499,12 @@ msgstr "ፈረስ"
#. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"RAM\n"
"LngText.text"
msgid "ram"
-msgstr "ትሪ"
+msgstr "ram"
#. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5573,13 +5571,12 @@ msgstr "አሳማ"
#. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BOAR\n"
"LngText.text"
msgid "boar"
-msgstr "ድብ"
+msgstr "boar"
#. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6231,13 +6228,12 @@ msgstr ""
#. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WOMANS_BOOTS\n"
"LngText.text"
msgid "boot"
-msgstr "ፍንዳታ"
+msgstr "boot"
#. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7330,13 +7326,12 @@ msgstr "ድምፅ ማጉያ"
#. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHEERING_MEGAPHONE\n"
"LngText.text"
msgid "mega"
-msgstr "ኦሜጋ"
+msgstr "mega"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8915,23 +8910,21 @@ msgstr ""
#. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"TRAM\n"
"LngText.text"
msgid "tram"
-msgstr "ትሪ"
+msgstr "tram"
#. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"TRAM_CAR\n"
"LngText.text"
msgid "tram2"
-msgstr "ትሪ2"
+msgstr "tram2"
#. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 24d7e5fcd25..022403968e3 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ 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: 2017-01-20 01:00+0000\n"
+"PO-Revision-Date: 2017-02-18 20:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484874056.000000\n"
+"X-POOTLE-MTIME: 1487448335.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -10676,7 +10676,7 @@ msgctxt ""
"bm_id3154347\n"
"help.text"
msgid "<bookmark_value>Dir function</bookmark_value>"
-msgstr "<bookmark_value>Dir function</bookmark_value>"
+msgstr "<bookmark_value>የ ዳይሬክቶሪ ተግባር</bookmark_value>"
#: 03020404.xhp
msgctxt ""
@@ -10844,7 +10844,7 @@ msgctxt ""
"bm_id3153380\n"
"help.text"
msgid "<bookmark_value>FileAttr function</bookmark_value>"
-msgstr "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "<bookmark_value>ፋይል መለያ ተግባር</bookmark_value>"
#: 03020405.xhp
msgctxt ""
@@ -12353,7 +12353,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "DateValue Function [Runtime]"
-msgstr "የ ቀን ዋጋ ተግባር [Runtime]"
+msgstr "የ ቀን ዋጋ ተግባር [ማስኬጃ ጊዜ]"
#: 03030102.xhp
msgctxt ""
@@ -12592,7 +12592,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Month Function [Runtime]"
-msgstr "የ ወር ተግባር [Runtime]"
+msgstr "የ ወር ተግባር [ማስኬጃ ጊዜ]"
#: 03030104.xhp
msgctxt ""
@@ -12903,7 +12903,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Year Function [Runtime]"
-msgstr "የ አመት ተግባር Function [Runtime]"
+msgstr "የ አመት ተግባር [ማስኬጃ ጊዜ]"
#: 03030106.xhp
msgctxt ""
@@ -12920,7 +12920,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">የ አመት ተግባሮች [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">የ አመት ተግባሮች [ማስኬጃ ጊዜ]</link>"
#: 03030106.xhp
msgctxt ""
@@ -13035,7 +13035,7 @@ msgctxt ""
"bm_id3150620\n"
"help.text"
msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "<bookmark_value>ቀን በ Iso አቀራረብ ተግባር</bookmark_value>"
+msgstr "<bookmark_value>CdateToIso ተግባር</bookmark_value>"
#: 03030107.xhp
msgctxt ""
@@ -14655,7 +14655,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Minute Function [Runtime]"
-msgstr "የ ደቂቃ ተግባር [Runtime]"
+msgstr "የ ደቂቃ ተግባር [ማስኬጃ ጊዜ]"
#: 03030202.xhp
msgctxt ""
@@ -14672,7 +14672,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">ደቂቃ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">ye ደቂቃ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03030202.xhp
msgctxt ""
@@ -14806,7 +14806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Now Function [Runtime]"
-msgstr "የ አሁን ተግባር [Runtime]"
+msgstr "የ አሁን ተግባር [ማስኬጃ ጊዜ]"
#: 03030203.xhp
msgctxt ""
@@ -14822,7 +14822,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">አሁን ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">አሁን ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03030203.xhp
msgctxt ""
@@ -14886,7 +14886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Second Function [Runtime]"
-msgstr "ሁለተኛ ተግባር [Runtime]"
+msgstr "ሁለተኛ ተግባር [ማስኬጃ ጊዜ]"
#: 03030204.xhp
msgctxt ""
@@ -14902,7 +14902,7 @@ msgctxt ""
"hd_id3153346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">ሁለተኛ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">ሁለተኛ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03030204.xhp
msgctxt ""
@@ -15190,7 +15190,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TimeValue Function [Runtime]"
-msgstr "የ ሰአት ዋጋ ተግባር [Runtime]"
+msgstr "የ ሰአት ዋጋ ተግባር [ማስኬጃ ጊዜ]"
#: 03030206.xhp
msgctxt ""
@@ -15206,7 +15206,7 @@ msgctxt ""
"hd_id3149670\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">የ ሰአት ዋጋ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">የ ሰአት ዋጋ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03030206.xhp
msgctxt ""
@@ -15887,7 +15887,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Error Function [Runtime]"
-msgstr "የ ስህተት ተግባር [Runtime]"
+msgstr "የ ስህተት ተግባር [ማስኬጃ ጊዜ]"
#: 03050300.xhp
msgctxt ""
@@ -17586,7 +17586,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
-msgstr "የ ትሪጎኖሜትሪክ ተግባሮች የሚመልስ አርክ ታንጀንት ለ ቁጥር መግለጫ: የሚመልሰው ዋጋ መጠን ከ -Pi/2 እስከ +Pi/2."
+msgstr "የ ትሪጎኖሜትሪክ ተግባሮች የሚመልስ አርክ ታንጀንት ለ ቁጥር መግለጫ: የሚመልሰው ዋጋ መጠን ከ -ፓይ/2 እስከ +ፓይ/2."
#: 03080101.xhp
msgctxt ""
@@ -17594,7 +17594,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
-msgstr "አርክ ታንጀንት የ ታንጀንት ተግባር ግልባጭ ነው: የ አርክ ታንጀንት ተግባር አንግል ይመልሳል \"አልፋ\", በ ራዲያንስ ውስጥ የ ተገለጸ: የዚህን አንግል ታንጀንት በ መጠቀም: ተግባር እንዲሁም ይመልሳል አንግል \"አልፋ\" የ እርዝመት መጠን በማወዳደር: ሳይድ ከ አንግሉ ኦፖዚት የሆነ ለ እርዝመቱ ለ ሳይድ አድጀሰንት ለሆነው አንግል ውስጥ በ ራይት-አንግል ትሪያንግል ውስጥ"
+msgstr "አርክ ታንጀንት የ ታንጀንት ተግባር ግልባጭ ነው: የ አርክ ታንጀንት ተግባር አንግል ይመልሳል \"አልፋ\": በ ራዲያንስ ውስጥ የ ተገለጸ: የዚህን አንግል ታንጀንት በ መጠቀም: ተግባር እንዲሁም ይመልሳል አንግል \"አልፋ\" የ እርዝመት መጠን በማወዳደር: ሳይድ ከ አንግሉ ኦፖዚት የሆነ ለ እርዝመቱ ለ ሳይድ አድጀሰንት ለሆነው አንግል ውስጥ በ ራይት-አንግል ትሪያንግል ውስጥ"
#: 03080101.xhp
msgctxt ""
@@ -17946,7 +17946,7 @@ msgctxt ""
"hd_id3153896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin ተግባሮች [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">የ ሳይን ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03080103.xhp
msgctxt ""
@@ -18130,7 +18130,7 @@ msgctxt ""
"hd_id3148550\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan ተግባሮች [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">የ ታንጀንት ተግባሮች [ማስኬጃ ጊዜ]</link>"
#: 03080104.xhp
msgctxt ""
@@ -18170,7 +18170,7 @@ msgctxt ""
"par_id3151042\n"
"help.text"
msgid "Tan (Number)"
-msgstr "Tan (Number)"
+msgstr "የ ታንጀንት (ቁጥር)"
#: 03080104.xhp
msgctxt ""
@@ -26321,7 +26321,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IsError Function [Runtime]"
-msgstr "ስህተት ነው ተግባር [Runtime]"
+msgstr "ስህተት ነው ተግባር [ማስኬጃ ጊዜ]"
#: 03102450.xhp
msgctxt ""
@@ -26337,7 +26337,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">ስህተት ነው ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">ስህተት ነው ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03102450.xhp
msgctxt ""
@@ -27964,7 +27964,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FindPropertyObject Function [Runtime]"
-msgstr "የ እቃ ባህሪ መፈለጊያ [Runtime]"
+msgstr "የ እቃ ባህሪ መፈለጊያ [ማስኬጃ ጊዜ]"
#: 03103900.xhp
msgctxt ""
@@ -27981,7 +27981,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindObject Function [Runtime]\">የ እቃ ባሀኢ መፈለጊያ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindObject Function [Runtime]\">የ እቃ ባሀሪ መፈለጊያ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03103900.xhp
msgctxt ""
@@ -28160,7 +28160,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IsMissing function [Runtime]"
-msgstr "ተግባር ጎድሏል [Runtime]"
+msgstr "ተግባር ጎድሏል [ማስኬጃ ጊዜ]"
#: 03104000.xhp
msgctxt ""
@@ -28177,7 +28177,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">ተግባር ጎድሏል [ማስኬጃ ጊዜ]</link>"
#: 03104000.xhp
msgctxt ""
@@ -30069,7 +30069,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format Function [Runtime]"
-msgstr "የ አቀራረብ ተግባር [Runtime]"
+msgstr "የ አቀራረብ ተግባር [ማስኬጃ ጊዜ]"
#: 03120301.xhp
msgctxt ""
@@ -30085,7 +30085,7 @@ msgctxt ""
"hd_id3153539\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">የ አቀራረብ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">የ አቀራረብ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03120301.xhp
msgctxt ""
@@ -30525,7 +30525,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Left Function [Runtime]"
-msgstr "የ ግራ ተግባር [Runtime]"
+msgstr "የ ግራ ተግባር [ማስኬጃ ጊዜ]"
#: 03120303.xhp
msgctxt ""
@@ -30541,7 +30541,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">የ ግራ ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">የ ግራ ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03120303.xhp
msgctxt ""
@@ -30997,7 +30997,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Right Function [Runtime]"
-msgstr "የ ቀኝ ተግባር [Runtime]"
+msgstr "የ ቀኝ ተግባር [ማስኬጃ ጊዜ]"
#: 03120307.xhp
msgctxt ""
@@ -33078,7 +33078,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "የ ኢንች አንድ ሀያኛ: በ ፒክስልX ተግባር [Runtime]"
+msgstr "የ ኢንች አንድ ሀያኛ: በ ፒክስልX ተግባር [ማስኬጃ ጊዜ]"
#: 03131300.xhp
msgctxt ""
@@ -33094,7 +33094,7 @@ msgctxt ""
"hd_id3153539\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">የ ኢንች አንድ ሀያኛ: በ ፒክስልX ተግባር [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">የ ኢንች አንድ ሀያኛ: በ ፒክስልX ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03131300.xhp
msgctxt ""
@@ -33158,7 +33158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "ትዊፕስ በ ፒክስልY ተግባር [ማስኬጃ ጊዜ]"
+msgstr "<bookmark_value>የ ኢንች አንድ ሀያኛ: በ ፒክስልY ተግባር</bookmark_value>"
#: 03131400.xhp
msgctxt ""
@@ -33174,7 +33174,7 @@ msgctxt ""
"hd_id3150040\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">ትዊፕስ በ ፒክስልY ተግባር [ማስኬጃ ጊዜ]</link>"
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">የ ኢንች አንድ ሀያኛ በ ፒክስልY ተግባር [ማስኬጃ ጊዜ]</link>"
#: 03131400.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/02.po b/source/am/helpcontent2/source/text/sbasic/shared/02.po
index 194e20dca57..d24bfc6f6eb 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/02.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-12-13 03:02+0000\n"
+"PO-Revision-Date: 2017-02-17 01:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1481598177.000000\n"
+"X-POOTLE-MTIME: 1487294858.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1108,7 +1108,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\".uno:Checkbox\">Adds a check box that you can use to turn a function on or off.</ahelp>"
-msgstr "<ahelp hid=\".uno:Checkbox\">የምልክት ሳጥን መጨመሪያ ተግባሩን ማብራት እና ማጥፋት ያስችሎታል </ahelp>"
+msgstr "<ahelp hid=\".uno:Checkbox\">የ ምልክት ሳጥን መጨመሪያ ተግባሩን ማብራት እና ማጥፋት ያስችሎታል </ahelp>"
#: 20000000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index 9ab32715d96..70fafd542ef 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2016-12-23 17:43+0000\n"
+"PO-Revision-Date: 2017-02-17 03:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482514993.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487301345.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1204,7 +1204,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "On Standard bar, click"
-msgstr "በመደበኛ መደርደሪያው ላይ ይጫኑ"
+msgstr "በ መደበኛ መደርደሪያው ላይ ይጫኑ"
#: 00000412.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index ec8f5140202..ed92b3dbb36 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-30 17:04+0000\n"
+"PO-Revision-Date: 2017-02-20 03:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485795884.000000\n"
+"X-POOTLE-MTIME: 1487559885.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10845,7 +10845,7 @@ msgctxt ""
"bm_id3155954\n"
"help.text"
msgid "<bookmark_value>NOT function</bookmark_value>"
-msgstr "<bookmark_value>NOT function</bookmark_value>"
+msgstr "<bookmark_value>ተግባር አይደለም</bookmark_value>"
#: 04060105.xhp
msgctxt ""
@@ -10916,7 +10916,7 @@ msgctxt ""
"bm_id3148394\n"
"help.text"
msgid "<bookmark_value>OR function</bookmark_value>"
-msgstr "<bookmark_value>OR function</bookmark_value>"
+msgstr "<bookmark_value>ወይንም ተግባር</bookmark_value>"
#: 04060105.xhp
msgctxt ""
@@ -11103,7 +11103,7 @@ msgctxt ""
"bm_id3156257\n"
"help.text"
msgid "<bookmark_value>XOR function</bookmark_value>"
-msgstr "<bookmark_value>XOR function</bookmark_value>"
+msgstr "<bookmark_value>Xወይንም ተግባር</bookmark_value>"
#: 04060105.xhp
msgctxt ""
@@ -11607,7 +11607,7 @@ msgctxt ""
"bm_id3145084\n"
"help.text"
msgid "<bookmark_value>ASIN function</bookmark_value>"
-msgstr "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "<bookmark_value>አርክ ሳይን ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11695,7 +11695,7 @@ msgctxt ""
"bm_id3151266\n"
"help.text"
msgid "<bookmark_value>ASINH function</bookmark_value>"
-msgstr "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "<bookmark_value>ግልባጭ ሀይፐርቦሊክ ሳይን ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11767,7 +11767,7 @@ msgctxt ""
"bm_id3155996\n"
"help.text"
msgid "<bookmark_value>ATAN function</bookmark_value>"
-msgstr "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "<bookmark_value>አርክ ታንጀንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11775,7 +11775,7 @@ msgctxt ""
"hd_id3155996\n"
"help.text"
msgid "ATAN"
-msgstr "ATAN"
+msgstr "አርክ ታንጀንት"
#: 04060106.xhp
msgctxt ""
@@ -11799,7 +11799,7 @@ msgctxt ""
"par_id3150261\n"
"help.text"
msgid "ATAN(Number)"
-msgstr "ATAN(Number)"
+msgstr "አርክ ታንጀንት(ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -11831,7 +11831,7 @@ msgctxt ""
"par_id3143229\n"
"help.text"
msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
-msgstr "<item type=\"input\">=ATAN(1)</item> ይመልሳል 0.785398163397448 (PI/4 radians)."
+msgstr "<item type=\"input\">=ግልባጭ ታንጀንት(1)</item> ይመልሳል 0.785398163397448 (ፓይ/4 ራዲያንስ)."
#: 04060106.xhp
msgctxt ""
@@ -11847,7 +11847,7 @@ msgctxt ""
"bm_id3153983\n"
"help.text"
msgid "<bookmark_value>ATAN2 function</bookmark_value>"
-msgstr "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "<bookmark_value>ግልባጭ ታንጀንት2 ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11855,7 +11855,7 @@ msgctxt ""
"hd_id3153983\n"
"help.text"
msgid "ATAN2"
-msgstr "ATAN2"
+msgstr "ግልባጭ ታንጀንት2"
#: 04060106.xhp
msgctxt ""
@@ -11943,7 +11943,7 @@ msgctxt ""
"bm_id3155398\n"
"help.text"
msgid "<bookmark_value>ATANH function</bookmark_value>"
-msgstr "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "<bookmark_value>ግልባጭ ሀይፐርቦሊክ ታንጀንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -11951,7 +11951,7 @@ msgctxt ""
"hd_id3155398\n"
"help.text"
msgid "ATANH"
-msgstr "ATANH"
+msgstr "ግልባጭ ሀይፐርቦሊክ ታንጀንት"
#: 04060106.xhp
msgctxt ""
@@ -12007,7 +12007,7 @@ msgctxt ""
"par_id3145419\n"
"help.text"
msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
-msgstr "<item type=\"input\">=ATANH(0)</item> ይመልሳል 0."
+msgstr "<item type=\"input\">=ግልባጭ ሀይፐርቦሊክ ታንጀንት(0)</item> ይመልሳል 0."
#: 04060106.xhp
msgctxt ""
@@ -13839,7 +13839,7 @@ msgctxt ""
"bm_id3157762\n"
"help.text"
msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "<bookmark_value>PI function</bookmark_value>"
+msgstr "<bookmark_value>የ ፓይ ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14047,7 +14047,7 @@ msgctxt ""
"bm_id3152651\n"
"help.text"
msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
-msgstr "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "<bookmark_value>ተከታታይ ድምር ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14311,7 +14311,7 @@ msgctxt ""
"par_id3158341\n"
"help.text"
msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
-msgstr "ይህ ተግባር ይፈጸማል እንደ <item type=\"literal\">አካፋይ - ተካፋይ * INT(አካፋይ/ተካፋይ)</item> እና ይህ መቀመሪያ ውጤት ይሰጣል ክርክሩ integer ካልሆነ"
+msgstr "ይህ ተግባር ይፈጸማል እንደ <item type=\"literal\">አካፋይ - ተካፋይ * ኢንቲጀር(አካፋይ/ተካፋይ)</item> እና ይህ መቀመሪያ ውጤት ይሰጣል ክርክሩ ኢንቲጀር ካልሆነ"
#: 04060106.xhp
msgctxt ""
@@ -14783,7 +14783,7 @@ msgctxt ""
"bm_id5256537\n"
"help.text"
msgid "<bookmark_value>SEC function</bookmark_value>"
-msgstr "<bookmark_value>SEC function</bookmark_value>"
+msgstr "<bookmark_value>የ ሴካንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14863,7 +14863,7 @@ msgctxt ""
"bm_id840005\n"
"help.text"
msgid "<bookmark_value>SECH function</bookmark_value>"
-msgstr "<bookmark_value>SECH function</bookmark_value>"
+msgstr "<bookmark_value>የ ሴካንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -14927,7 +14927,7 @@ msgctxt ""
"bm_id3144877\n"
"help.text"
msgid "<bookmark_value>SIN function</bookmark_value>"
-msgstr "<bookmark_value>SIN function</bookmark_value>"
+msgstr "<bookmark_value>ሳይን ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -15007,7 +15007,7 @@ msgctxt ""
"bm_id3163397\n"
"help.text"
msgid "<bookmark_value>SINH function</bookmark_value>"
-msgstr "<bookmark_value>SINH function</bookmark_value>"
+msgstr "<bookmark_value>ሀይፐርቦሊክ ሳይን ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -15303,7 +15303,7 @@ msgctxt ""
"bm_id3152195\n"
"help.text"
msgid "<bookmark_value>TAN function</bookmark_value>"
-msgstr "<bookmark_value>TAN function</bookmark_value>"
+msgstr "<bookmark_value>የ ታንጀንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -15311,7 +15311,7 @@ msgctxt ""
"hd_id3152195\n"
"help.text"
msgid "TAN"
-msgstr "TAN"
+msgstr "ታንጀንት"
#: 04060106.xhp
msgctxt ""
@@ -15335,7 +15335,7 @@ msgctxt ""
"par_id3152255\n"
"help.text"
msgid "TAN(Number)"
-msgstr "TAN(Number)"
+msgstr "የ ታንጀንት (ቁጥር)"
#: 04060106.xhp
msgctxt ""
@@ -15383,7 +15383,7 @@ msgctxt ""
"bm_id3165434\n"
"help.text"
msgid "<bookmark_value>TANH function</bookmark_value>"
-msgstr "<bookmark_value>TANH function</bookmark_value>"
+msgstr "<bookmark_value>ሀይፐርቦሊክ ታንጀንት ተግባር</bookmark_value>"
#: 04060106.xhp
msgctxt ""
@@ -18103,7 +18103,7 @@ msgctxt ""
"par_id3148518\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MMULT\">Calculates the array product of two arrays.</ahelp> The number of columns for array 1 must match the number of rows for array 2. The square array has an equal number of rows and columns."
-msgstr "<ahelp hid=\"HID_FUNC_MMULT\">ለ ሁለትት ማዘጋጃዎች ውጤት ማዘጋጃ ማስሊያ </ahelp> የ አምዶች ቁጥር ለ ማዘጋጃ 1 ተመሳሳይ ቁጥር መሆን አለበት ለ ረድፎች ማዘጋጃ 2. የ ስኴር ማዘጋጃ እኩል ቁጥር ረድፎች እና አምዶች ይኖሩታል"
+msgstr "<ahelp hid=\"HID_FUNC_MMULT\">ለ ሁለት ማዘጋጃዎች ውጤት ማዘጋጃ ማስሊያ </ahelp> የ አምዶች ቁጥር ለ ማዘጋጃ 1 ተመሳሳይ ቁጥር መሆን አለበት ለ ረድፎች ማዘጋጃ 2. የ ስኴር ማዘጋጃ እኩል ቁጥር ረድፎች እና አምዶች ይኖሩታል"
#: 04060107.xhp
msgctxt ""
@@ -19287,7 +19287,7 @@ msgctxt ""
"par_idN11BA1\n"
"help.text"
msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
-msgstr "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
+msgstr "<item type=\"input\">=የ ድምር ውጤት(A1:B3;C1:D3)</item> ይመልሳል 397."
#: 04060107.xhp
msgctxt ""
@@ -20473,7 +20473,7 @@ msgctxt ""
"bm_id3153114\n"
"help.text"
msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
-msgstr "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "<bookmark_value>የ ስህተት አይነት ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -21386,7 +21386,7 @@ msgctxt ""
"bm_id3158430\n"
"help.text"
msgid "<bookmark_value>OFFSET function</bookmark_value>"
-msgstr "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "<bookmark_value>ማካካሻ ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -21901,7 +21901,7 @@ msgctxt ""
"bm_id3147321\n"
"help.text"
msgid "<bookmark_value>ROW function</bookmark_value>"
-msgstr "<bookmark_value>ROW function</bookmark_value>"
+msgstr "<bookmark_value>የ ረድፍ ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -22026,7 +22026,7 @@ msgctxt ""
"bm_id3145772\n"
"help.text"
msgid "<bookmark_value>ROWS function</bookmark_value>"
-msgstr "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "<bookmark_value>የ ረድፎች ተግባር</bookmark_value>"
#: 04060109.xhp
msgctxt ""
@@ -22836,7 +22836,7 @@ msgctxt ""
"204\n"
"help.text"
msgid "CHAR(Number)"
-msgstr "CHAR(Number)"
+msgstr "ባህሪ(ቁጥር)"
#: 04060110.xhp
msgctxt ""
@@ -23618,7 +23618,7 @@ msgctxt ""
"bm_id3147083\n"
"help.text"
msgid "<bookmark_value>LEFT function</bookmark_value>"
-msgstr "<bookmark_value>LEFT function</bookmark_value>"
+msgstr "<bookmark_value>የ ግራ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -23698,7 +23698,7 @@ msgctxt ""
"bm_id2947083\n"
"help.text"
msgid "<bookmark_value>LEFTB function</bookmark_value>"
-msgstr "<bookmark_value>LEFTB function</bookmark_value>"
+msgstr "<bookmark_value>የ ግራB ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -23983,7 +23983,7 @@ msgctxt ""
"111\n"
"help.text"
msgid "<item type=\"input\">=LENB(12345.67)</item> returns 8."
-msgstr "<item type=\"input\">=LENB(12345.67)</item> returns 8."
+msgstr "<item type=\"input\">=እርዝመትB(12345.67)</item> ይመልሳል 8."
#: 04060110.xhp
msgctxt ""
@@ -24062,7 +24062,7 @@ msgctxt ""
"bm_id3154589\n"
"help.text"
msgid "<bookmark_value>MID function</bookmark_value>"
-msgstr "<bookmark_value>MID function</bookmark_value>"
+msgstr "<bookmark_value>መሀከለኛ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24151,7 +24151,7 @@ msgctxt ""
"bm_id2954589\n"
"help.text"
msgid "<bookmark_value>MIDB function</bookmark_value>"
-msgstr "<bookmark_value>MIDB function</bookmark_value>"
+msgstr "<bookmark_value>መሀከለኛB ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24318,7 +24318,7 @@ msgctxt ""
"bm_id3159143\n"
"help.text"
msgid "<bookmark_value>PROPER function</bookmark_value>"
-msgstr "<bookmark_value>PROPER function</bookmark_value>"
+msgstr "<bookmark_value>ተስማሚ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24389,7 +24389,7 @@ msgctxt ""
"bm_id3149171\n"
"help.text"
msgid "<bookmark_value>REPLACE function</bookmark_value>"
-msgstr "<bookmark_value>REPLACE function</bookmark_value>"
+msgstr "<bookmark_value>መቀየሪያ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24496,7 +24496,7 @@ msgctxt ""
"bm_id3149741\n"
"help.text"
msgid "<bookmark_value>REPT function</bookmark_value>"
-msgstr "<bookmark_value>REPT function</bookmark_value>"
+msgstr "<bookmark_value>መድገሚያ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24585,7 +24585,7 @@ msgctxt ""
"bm_id3149805\n"
"help.text"
msgid "<bookmark_value>RIGHT function</bookmark_value>"
-msgstr "<bookmark_value>RIGHT function</bookmark_value>"
+msgstr "<bookmark_value>የ ቀኝ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24665,7 +24665,7 @@ msgctxt ""
"bm_id2949805\n"
"help.text"
msgid "<bookmark_value>RIGHTB function</bookmark_value>"
-msgstr "<bookmark_value>RIGHTB function</bookmark_value>"
+msgstr "<bookmark_value>የ ቀኝB ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24775,7 +24775,7 @@ msgctxt ""
"bm_id3153534\n"
"help.text"
msgid "<bookmark_value>ROMAN function</bookmark_value>"
-msgstr "<bookmark_value>ROMAN function</bookmark_value>"
+msgstr "<bookmark_value>የ ሮማን ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -24900,7 +24900,7 @@ msgctxt ""
"bm_id3151005\n"
"help.text"
msgid "<bookmark_value>SEARCH function</bookmark_value>"
-msgstr "<bookmark_value>SEARCH function</bookmark_value>"
+msgstr "<bookmark_value>መፈለጊያ ተግባር</bookmark_value>"
#: 04060110.xhp
msgctxt ""
@@ -26887,7 +26887,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
-msgstr ""
+msgstr "ማስገቢያ: የሚያሳየው መግለጫው ለ የትኛው ደንብ እንደ ተሰጠ ነው: ደንብ የሚጀምረው በ 1. ነው: የ ደንብ ቁጥር 0, ከሆነ: መግለጫው ራሱ መሰጠት አለበት በ ደንብ መግለጫ ውስጥ: ስለዚህ ይህ የ ደንብ መግለጫ ምንም ትርጉም አይኖረውም"
#: 04060112.xhp
msgctxt ""
@@ -26914,7 +26914,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "char* pDesc:"
-msgstr ""
+msgstr "ባህሪ* የ ደንብ መግለጫ:"
#: 04060112.xhp
msgctxt ""
@@ -26932,7 +26932,7 @@ msgctxt ""
"73\n"
"help.text"
msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
-msgstr ""
+msgstr "የ ደንብ ስም እና የ ደንብ መግለጫ ባህሪ ማዘጋጃ ናቸው: የሚፈጸሙ በ $[officename] ሰንጠረዥ ውስጥ በ 256. መጠን: እባክዎን ያስታውሱ ዝግጁ ክፍተት ያለው በ <emph>ተግባር አዋቂ</emph> የ ተወሰነ ነው እና 256 ባህሪ በ ሙሉ አይጠቀምም"
#: 04060112.xhp
msgctxt ""
@@ -28485,7 +28485,7 @@ msgctxt ""
"bm_id3153034\n"
"help.text"
msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>ባይነሪ ቁጥር ወደ ዴሲማል መቀየሪያ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ዴሲማል ቁጥር</bookmark_value>"
+msgstr "<bookmark_value>ባይነሪ2ዴሲማል መቀየሪያ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ዴሲማል ቁጥር</bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28494,7 +28494,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "BIN2DEC"
-msgstr "ባይነሪ ቁጥር ወደ ዴሲማል መቀየሪያ"
+msgstr "ባይነሪ2ዴሲማል"
#: 04060115.xhp
msgctxt ""
@@ -28521,7 +28521,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "BIN2DEC(Number)"
-msgstr "ባይነሪ ቁጥር ወደ ዴሲማል መቀየሪያ(ቁጥር)"
+msgstr "ባይነሪ2ዴሲማል(ቁጥር)"
#: 04060115.xhp
msgctxt ""
@@ -28556,7 +28556,7 @@ msgctxt ""
"bm_id3149954\n"
"help.text"
msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል መቀየሪያ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል ቁጥር </bookmark_value>"
+msgstr "<bookmark_value>ባይነሪ2ሄክስ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል ቁጥር </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28565,7 +28565,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "BIN2HEX"
-msgstr "ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል መቀየሪያ"
+msgstr "ባይነሪ2ሄክስ"
#: 04060115.xhp
msgctxt ""
@@ -28592,7 +28592,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "BIN2HEX(Number; Places)"
-msgstr "ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል መቀየሪያ(ቁጥር: ቦታዎች)"
+msgstr "ባይነሪ2ሄክስ(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -28636,7 +28636,7 @@ msgctxt ""
"bm_id3153332\n"
"help.text"
msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል መቀየሪያ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል ቁጥር </bookmark_value>"
+msgstr "<bookmark_value>ባይነሪ2ሄክስ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል ቁጥር </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28645,7 +28645,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "BIN2OCT"
-msgstr "ባይነሪ ቁጥር ወደ ሄክሳ ዴሲማል መቀየሪያ"
+msgstr "ባይነሪ2ኦክታል"
#: 04060115.xhp
msgctxt ""
@@ -28672,7 +28672,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "BIN2OCT(Number; Places)"
-msgstr "ባይነሪ ቁጥር ወደ ኦክታል መቀየሪያ(ቁጥር: ቦታዎች)"
+msgstr "ባይነሪ2ኦክታል(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -28778,7 +28778,7 @@ msgctxt ""
"bm_id3157971\n"
"help.text"
msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>ዴሲማል ቁጥር ወደ ባይነሪ መቀያየሪያ ተግባር </bookmark_value><bookmark_value>መቀያየሪያ: ዴሲማል ቁጥር ወደ ባይነሪ ቁጥር </bookmark_value>"
+msgstr "<bookmark_value>ዴሲማል2ባይነሪ ተግባር </bookmark_value><bookmark_value>መቀያየሪያ: ዴሲማል ቁጥር ወደ ባይነሪ ቁጥር </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28787,7 +28787,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "DEC2BIN"
-msgstr "ዴሲማል ቁጥር ወደ ባይነሪ መቀያየሪያ"
+msgstr "ዴሲማል2ባይነሪ"
#: 04060115.xhp
msgctxt ""
@@ -28814,7 +28814,7 @@ msgctxt ""
"58\n"
"help.text"
msgid "DEC2BIN(Number; Places)"
-msgstr "ዴሲማል ቁጥር ወደ ባይነሪ መቀያየሪያ(ቁጥር: ቦታዎች)"
+msgstr "ዴሲማል2ባይነሪ(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -28858,7 +28858,7 @@ msgctxt ""
"bm_id3149388\n"
"help.text"
msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ዴሲማል ወደ ሄክሳ ዴሲማል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ዴሲማል ቁጥሮች ወደ ሄክሳ ዴሲማል ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ዴሲማል2ሄክሳ ዴሲማል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ዴሲማል ቁጥሮች ወደ ሄክሳ ዴሲማል ቁጥሮች </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28867,7 +28867,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "DEC2HEX"
-msgstr "መቀየሪያ ዴሲማል ወደ ሄክሳ ዴሲማል"
+msgstr "ዴሲማል2ሄክሳ ዴሲማል"
#: 04060115.xhp
msgctxt ""
@@ -28894,7 +28894,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "DEC2HEX(Number; Places)"
-msgstr "ዴሲማል ወደ ሄክሳ ዴሲማል(ቁጥር: ቦታዎች)"
+msgstr "ዴሲማል2ሄክሳ ዴሲማል(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -28938,7 +28938,7 @@ msgctxt ""
"bm_id3154948\n"
"help.text"
msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ዴሲማል ወደ ኦክታል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ዴሲማል ቁጥሮች ወደ ኦክታል ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ዴሲማል2ኦክታል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ዴሲማል ቁጥሮች ወደ ኦክታል ቁጥሮች </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -28947,7 +28947,7 @@ msgctxt ""
"63\n"
"help.text"
msgid "DEC2OCT"
-msgstr "መቀየሪያ ዴሲማል ወደ ኦክታል"
+msgstr "ዴሲማል2ኦክታል"
#: 04060115.xhp
msgctxt ""
@@ -28974,7 +28974,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "DEC2OCT(Number; Places)"
-msgstr "ዴሲማል ወደ ኦክታል(ቁጥር: ቦታዎች)"
+msgstr "ዴሲማል2ኦክታል(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -29370,7 +29370,7 @@ msgctxt ""
"bm_id3147276\n"
"help.text"
msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ሄክሳ ዴሲማል ወደ ባይነሪ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ባይነሪ ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ሄክሳ2ባይነሪ ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ባይነሪ ቁጥሮች </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -29379,7 +29379,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "HEX2BIN"
-msgstr "ሄክሳ ዴሲማል ወደ ባይነሪ"
+msgstr "ሄክሳ2ባይነሪ"
#: 04060115.xhp
msgctxt ""
@@ -29406,7 +29406,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "HEX2BIN(Number; Places)"
-msgstr "ሄክሳ ዴሲማል ወደ ባይነሪ(ቁጥር: ቦታዎች)"
+msgstr "ሄክሳ2ባይነሪ(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -29450,7 +29450,7 @@ msgctxt ""
"bm_id3154742\n"
"help.text"
msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ሄክሳ ዴሲማል ወደ ዴሲማል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ዴሲማል ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ሄክሳ2ዴሲማል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ዴሲማል ቁጥሮች </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -29459,7 +29459,7 @@ msgctxt ""
"87\n"
"help.text"
msgid "HEX2DEC"
-msgstr "ሄክሳ ዴሲማል ወደ ዴሲማል"
+msgstr "ሄክሳ2ዴሲማል"
#: 04060115.xhp
msgctxt ""
@@ -29486,7 +29486,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "HEX2DEC(Number)"
-msgstr "ሄክሳ ዴሲማል ወደ ዴሲማል(ቁጥር)"
+msgstr "ሄክሳ2ዴሲማል(ቁጥር)"
#: 04060115.xhp
msgctxt ""
@@ -29521,7 +29521,7 @@ msgctxt ""
"bm_id3149750\n"
"help.text"
msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ሄክሳ ዴሲማል ወደ ኦክታል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ኦክታል ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ሄክሳ2ኦክታል ተግባር </bookmark_value><bookmark_value>መቀየሪያ: ሄክሳ ዴሲማል ቁጥሮች ወደ ኦክታል ቁጥሮች </bookmark_value>"
#: 04060115.xhp
msgctxt ""
@@ -29530,7 +29530,7 @@ msgctxt ""
"94\n"
"help.text"
msgid "HEX2OCT"
-msgstr "ሄክሳ ዴሲማል ወደ ኦክታል"
+msgstr "ሄክሳ2ኦክታል"
#: 04060115.xhp
msgctxt ""
@@ -29557,7 +29557,7 @@ msgctxt ""
"97\n"
"help.text"
msgid "HEX2OCT(Number; Places)"
-msgstr "ሄክሳ ዴሲማል ወደ ኦክታል(ቁጥር: ቦታዎች)"
+msgstr "ሄክሳ2ኦክታል(ቁጥር: ቦታዎች)"
#: 04060115.xhp
msgctxt ""
@@ -30433,7 +30433,7 @@ msgctxt ""
"146\n"
"help.text"
msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
-msgstr "ልዩነት በ 2 ውስብስብ ቁጥር መካከል(\"ውስብስብ ቁጥር1\": \"ውስብስብ ቁጥር2\": ...)"
+msgstr "ልዩነት በ ሁለት ውስብስብ ቁጥር መካከል(\"ውስብስብ ቁጥር1\": \"ውስብስብ ቁጥር2\": ...)"
#: 04060116.xhp
msgctxt ""
@@ -30672,7 +30672,7 @@ msgctxt ""
"bm_id3155103\n"
"help.text"
msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ኦክታል ወደ ባይነሪ ተግባር </bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ባይነሪ ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ኦክታል2ባይነሪ ተግባር </bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ባይነሪ ቁጥሮች </bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -30681,7 +30681,7 @@ msgctxt ""
"217\n"
"help.text"
msgid "OCT2BIN"
-msgstr "መቀየሪያ ኦክታል ወደ ባይነሪ"
+msgstr "ኦክታል2ባይነሪ"
#: 04060116.xhp
msgctxt ""
@@ -30708,7 +30708,7 @@ msgctxt ""
"220\n"
"help.text"
msgid "OCT2BIN(Number; Places)"
-msgstr "መቀየሪያ ኦክታል ወደ ባይነሪ (ቁጥር: ቦታዎች)"
+msgstr "ኦክታል2ባይነሪ(ቁጥር: ቦታዎች)"
#: 04060116.xhp
msgctxt ""
@@ -30752,7 +30752,7 @@ msgctxt ""
"bm_id3152791\n"
"help.text"
msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
-msgstr "<bookmark_value>ኦክታል ወደ ዴሲማል ተግባር</bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ዴሲማል ቁጥሮች</bookmark_value>"
+msgstr "<bookmark_value>ኦክታል2ዴሲማል ተግባር</bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ዴሲማል ቁጥሮች</bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -30761,7 +30761,7 @@ msgctxt ""
"225\n"
"help.text"
msgid "OCT2DEC"
-msgstr "መቀየሪያ ኦክታል ወደ ዴሲማል"
+msgstr "ኦክታል2ዴሲማል"
#: 04060116.xhp
msgctxt ""
@@ -30788,7 +30788,7 @@ msgctxt ""
"228\n"
"help.text"
msgid "OCT2DEC(Number)"
-msgstr "መቀየሪያ ኦክታል ወደ ዴሲማል(ቁጥር)"
+msgstr "ኦክታል2ዴሲማል(ቁጥር)"
#: 04060116.xhp
msgctxt ""
@@ -30815,7 +30815,7 @@ msgctxt ""
"231\n"
"help.text"
msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
-msgstr "<item type=\"input\">=OCT2DEC(144)</item> ይመልሳል 100."
+msgstr "<item type=\"input\">=ኦክት2ዴክ(144)</item> ይመልሳል 100."
#: 04060116.xhp
msgctxt ""
@@ -30823,7 +30823,7 @@ msgctxt ""
"bm_id3155391\n"
"help.text"
msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "<bookmark_value>መቀየሪያ ኦክታል ወደ ሄክሳ ዴሲማል ተግባር</bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ሄክሳ ዴሲማል ቁጥሮች </bookmark_value>"
+msgstr "<bookmark_value>ኦክታል2ሄክሳ ዴሲማል ተግባር</bookmark_value> <bookmark_value>መቀየሪያ: ኦክታል ቁጥሮች ወደ ሄክሳ ዴሲማል ቁጥሮች </bookmark_value>"
#: 04060116.xhp
msgctxt ""
@@ -30832,7 +30832,7 @@ msgctxt ""
"232\n"
"help.text"
msgid "OCT2HEX"
-msgstr "መቀየሪያ ኦክታል ወደ ሄክሳ ዴሲማል"
+msgstr "ኦክታል2ሄክሳ ዴሲማል"
#: 04060116.xhp
msgctxt ""
@@ -30859,7 +30859,7 @@ msgctxt ""
"235\n"
"help.text"
msgid "OCT2HEX(Number; Places)"
-msgstr "መቀየሪያ ኦክታል ወደ ሄክሳ ዴሲማል (ቁጥር: ቦታዎች)"
+msgstr "ኦክታል2ሄክሳ ዴሲማል(ቁጥር: ቦታዎች)"
#: 04060116.xhp
msgctxt ""
@@ -30895,7 +30895,7 @@ msgctxt ""
"239\n"
"help.text"
msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
-msgstr "<item type=\"input\">=OCT2HEX(144;4)</item> ይመልሳል 0064."
+msgstr "<item type=\"input\">=ኦክት2ሄክስ(144;4)</item> ይመልሳል 0064."
#: 04060116.xhp
msgctxt ""
@@ -31102,7 +31102,7 @@ msgctxt ""
"196\n"
"help.text"
msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
-msgstr "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr "ሴ, ፋ, <emph>ኬ</emph>, <emph>ኬል</emph>, Reau, Rank"
#: 04060116.xhp
msgctxt ""
@@ -31138,7 +31138,7 @@ msgctxt ""
"200\n"
"help.text"
msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
-msgstr "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgstr "<emph>ሚ2</emph> ማይል2, Nmi2, ኢንች2, ፊት2, ያርድ2, <emph>ang2</emph> ስንዝር2, Morgen, <emph>ar</emph>, acre, ha"
#: 04060116.xhp
msgctxt ""
@@ -31156,7 +31156,7 @@ msgctxt ""
"202\n"
"help.text"
msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
+msgstr "<emph>ሚ/ሰ</emph>, <emph>ሚ/ሰከንድ</emph> ማ/ሰ, ማይል በ ሰአት, kn, admkn"
#: 04060116.xhp
msgctxt ""
@@ -36736,7 +36736,7 @@ msgctxt ""
"bm_id4150026\n"
"help.text"
msgid "<bookmark_value>BITAND function</bookmark_value>"
-msgstr "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "<bookmark_value>ቢት እና ተግባር</bookmark_value>"
#: 04060120.xhp
msgctxt ""
@@ -39763,7 +39763,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
-msgstr "<emph>የ ዲግሪዎች ነፃነት</emph> የ ዲግሪዎች ነፃነት ቁጥር ነው: ለ አካፋዮች ለ F ስርጭት"
+msgstr "<emph>የ ዲግሪዎች ነፃነት1</emph> የ ዲግሪዎች ነፃነት ቁጥር ነው: ለ አካፋዮች ለ F ስርጭት"
#: 04060182.xhp
msgctxt ""
@@ -41459,7 +41459,7 @@ msgctxt ""
"bm_id2953216\n"
"help.text"
msgid "<bookmark_value>Z.TEST function</bookmark_value>"
-msgstr "<bookmark_value>Z.TEST function</bookmark_value>"
+msgstr "<bookmark_value>የ Z.መሞከሪያ ተግባር</bookmark_value>"
#: 04060182.xhp
msgctxt ""
@@ -41850,7 +41850,7 @@ msgctxt ""
"bm_id3149530\n"
"help.text"
msgid "<bookmark_value>LARGE function</bookmark_value>"
-msgstr "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "<bookmark_value>ትልቅ ተግባር</bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -41930,7 +41930,7 @@ msgctxt ""
"bm_id3154532\n"
"help.text"
msgid "<bookmark_value>SMALL function</bookmark_value>"
-msgstr "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "<bookmark_value>ትንሽ ተግባር</bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -42188,7 +42188,7 @@ msgctxt ""
"bm_id2853559\n"
"help.text"
msgid "<bookmark_value>CONFIDENCE.NORM function</bookmark_value>"
-msgstr "<bookmark_value>CONFIDENCE.NORM function</bookmark_value>"
+msgstr "<bookmark_value>መተማመኛ.መደበኛ ተግባር</bookmark_value>"
#: 04060183.xhp
msgctxt ""
@@ -43410,7 +43410,7 @@ msgctxt ""
"bm_id3154541\n"
"help.text"
msgid "<bookmark_value>MIN function</bookmark_value>"
-msgstr "<bookmark_value>MIN function</bookmark_value>"
+msgstr "<bookmark_value>አነስተኛ ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -44609,7 +44609,7 @@ msgctxt ""
"bm_id3152934\n"
"help.text"
msgid "<bookmark_value>PEARSON function</bookmark_value>"
-msgstr "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "<bookmark_value>የ ፒርሰን ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -44778,7 +44778,7 @@ msgctxt ""
"bm_id3153985\n"
"help.text"
msgid "<bookmark_value>POISSON function</bookmark_value>"
-msgstr "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "<bookmark_value>የ ፓሶን ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -44867,7 +44867,7 @@ msgctxt ""
"bm_id2953985\n"
"help.text"
msgid "<bookmark_value>POISSON.DIST function</bookmark_value>"
-msgstr "<bookmark_value>POISSON.DIST function</bookmark_value>"
+msgstr "<bookmark_value>የ ፓሶን.ስርጭት ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -44956,7 +44956,7 @@ msgctxt ""
"bm_id3153100\n"
"help.text"
msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "<bookmark_value>የ ፐርሰንት ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45036,7 +45036,7 @@ msgctxt ""
"bm_id2853100\n"
"help.text"
msgid "<bookmark_value>PERCENTILE.EXC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTILE.EXC function</bookmark_value>"
+msgstr "<bookmark_value>የ ፐርሰንት.አያካትትም ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45133,7 +45133,7 @@ msgctxt ""
"bm_id2953100\n"
"help.text"
msgid "<bookmark_value>PERCENTILE.INC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTILE.INC function</bookmark_value>"
+msgstr "<bookmark_value>ፐርሰንት.ያካትታል ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45495,7 +45495,7 @@ msgctxt ""
"bm_id3166442\n"
"help.text"
msgid "<bookmark_value>QUARTILE function</bookmark_value>"
-msgstr "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "<bookmark_value>የ ሩብ ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45575,7 +45575,7 @@ msgctxt ""
"bm_id2866442\n"
"help.text"
msgid "<bookmark_value>QUARTILE.EXC function</bookmark_value>"
-msgstr "<bookmark_value>QUARTILE.EXC function</bookmark_value>"
+msgstr "<bookmark_value>ሩብ.ያካትታል ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45663,7 +45663,7 @@ msgctxt ""
"bm_id2966442\n"
"help.text"
msgid "<bookmark_value>QUARTILE.INC function</bookmark_value>"
-msgstr "<bookmark_value>QUARTILE.INC function</bookmark_value>"
+msgstr "<bookmark_value>ሩብ.አያካትትም ተግባር</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -46099,7 +46099,7 @@ msgctxt ""
"bm_id3153556\n"
"help.text"
msgid "<bookmark_value>SKEW function</bookmark_value>"
-msgstr "<bookmark_value>SKEW function</bookmark_value>"
+msgstr "<bookmark_value>የሚያጋድልበት ተግባር</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -47171,7 +47171,7 @@ msgctxt ""
"bm_id3152592\n"
"help.text"
msgid "<bookmark_value>SLOPE function</bookmark_value>"
-msgstr "<bookmark_value>SLOPE function</bookmark_value>"
+msgstr "<bookmark_value>የ ስሎፕ ተግባር</bookmark_value>"
#: 04060185.xhp
msgctxt ""
@@ -48009,7 +48009,7 @@ msgctxt ""
"126\n"
"help.text"
msgid "<item type=\"input\">=T.DIST(1; 10; TRUE)</item> returns 0.8295534338"
-msgstr "<item type=\"input\">=T.DIST(1; 10; እውነት)</item> ይመልሳል 0.8295534338"
+msgstr "<item type=\"input\">=T.ስርጭት(1; 10; እውነት)</item> ይመልሳል 0.8295534338"
#: 04060185.xhp
msgctxt ""
@@ -48993,7 +48993,7 @@ msgctxt ""
"184\n"
"help.text"
msgid "<item type=\"input\">=WEIBULL(2;1;1;1)</item> returns 0.86."
-msgstr "<item type=\"input\">=WEIBULL(2;1;1;1)</item> ይመልሳል 0.86."
+msgstr "<item type=\"input\">=ዌይቡል(2;1;1;1)</item> ይመልሳል 0.86."
#: 04060185.xhp
msgctxt ""
@@ -59870,7 +59870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Examples Dataset for Statistical Functions"
-msgstr "ምሳሌዎች ዳታ ማሰናጃ ለ Statistical ተግባሮች"
+msgstr "ምሳሌዎች ዳታ ማሰናጃ ለ ስታትስቲክስ ተግባሮች"
#: ex_data_stat_func.xhp
msgctxt ""
@@ -61366,7 +61366,7 @@ msgctxt ""
"par_id262061474420658\n"
"help.text"
msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given Average_range is taken into calculation of the mean.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and the operator of a string concatenation (&).<br/>The operators equal to (=), not equal to (<>), greater than (>), greater than or equal to (>=), less than (<), and less than or equal to (<=) can be used in criterion arguments for comparison of numbers.<br/>The function can have up to 255 arguments, meaning that you can specify 127 criteria ranges and criteria for it."
-msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>), ይበልጣል ከ (>), ይበልጣል ከ ወይንም እኩል ነው ከ (>=), ያንሳል ከ (<), እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
+msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=) እኩል አይደለም ከ (<>) ይበልጣል ከ (>) ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<) እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
#: func_averageifs.xhp
msgctxt ""
@@ -61678,7 +61678,7 @@ msgctxt ""
"par_id14223137501158\n"
"help.text"
msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a row or a column is taken into counting.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and the operator of a string concatenation (&).<br/>The operators equal to (=), not equal to (<>), greater than (>), greater than or equal to (>=), less than (<), and less than or equal to (<=) can be used in criterion arguments for comparison of numbers.<br/>The function can have up to 500 arguments, meaning that you can specify 250 pairs of ranges and criteria."
-msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>), ይበልጣል ከ (>), ይበልጣል ከ ወይንም እኩል ነው ከ (>=), ያንሳል ከ (<), እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
+msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው መካከለኛ_መጠን ይወሰዳል ወደ አማካኝ ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>), ይበልጣል ከ (>), ይበልጣል ከ ወይንም እኩል ነው ከ (>=), ያንሳል ከ (<), እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 500 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 250 መመዘኛ መጠኖች እና መመዘኛ"
#: func_countifs.xhp
msgctxt ""
@@ -64279,7 +64279,7 @@ msgctxt ""
"hd_id29384186273495\n"
"help.text"
msgid "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">IMSEC</link></variable> function"
-msgstr "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">IMSEC</link></variable> ተግባር"
+msgstr "<variable id=\"imsec_head\"><link href=\"text/scalc/01/func_imsec.xhp\">የ ውስብስብ ቁጥር ኮሴካንት</link></variable> ተግባር"
#: func_imsec.xhp
msgctxt ""
@@ -64423,7 +64423,7 @@ msgctxt ""
"hd_id3192388765304\n"
"help.text"
msgid "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">IMSIN</link></variable> function"
-msgstr "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">IMSIN</link></variable> ተግባር"
+msgstr "<variable id=\"imsin_head\"><link href=\"text/scalc/01/func_imsin.xhp\">የ ውስብስብ ቁጥር ሳይን</link></variable> ተግባር"
#: func_imsin.xhp
msgctxt ""
@@ -64495,7 +64495,7 @@ msgctxt ""
"hd_id3192388765304\n"
"help.text"
msgid "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">IMSINH</link></variable> function"
-msgstr "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">IMSINH</link></variable> ተግባር"
+msgstr "<variable id=\"imsinh_head\"><link href=\"text/scalc/01/func_imsinh.xhp\">የ ውስብስብ ቁጥር ሀይፐርቦሊክ ሳይን</link></variable> ተግባር"
#: func_imsinh.xhp
msgctxt ""
@@ -64575,7 +64575,7 @@ msgctxt ""
"hd_id9522389621160\n"
"help.text"
msgid "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">IMTAN</link></variable> function"
-msgstr "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">IMTAN</link></variable> ተግባር"
+msgstr "<variable id=\"imtan_head\"><link href=\"text/scalc/01/func_imtan.xhp\">የ ውስብስብ ቁጥር ታንጀንት</link></variable> ተግባር"
#: func_imtan.xhp
msgctxt ""
@@ -64719,7 +64719,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "=ISOWEEKNUM(DATE(1999;1;1)) returns 53. Week 1 starts on Monday, 1999-01-04."
-msgstr "=ISO የ ሳምንት ቁጥር(ቀን(1999;1;1);21) ይመልሳል 53 ሳምንት 1 የሚጀምረው ሰኞ ነው 1999-01-04."
+msgstr "=ISO የ ሳምንት ቁጥር(ቀን(1999;1;1)) ይመልሳል 53 ሳምንት 1 የሚጀምረው ሰኞ ነው 1999-01-04."
#: func_minute.xhp
msgctxt ""
@@ -64832,7 +64832,7 @@ msgctxt ""
"bm_id3149936\n"
"help.text"
msgid "<bookmark_value>MONTH function</bookmark_value>"
-msgstr "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "<bookmark_value>የ ወር ተግባር</bookmark_value>"
#: func_month.xhp
msgctxt ""
@@ -65232,7 +65232,7 @@ msgctxt ""
"bm_id3150521\n"
"help.text"
msgid "<bookmark_value>NOW function</bookmark_value>"
-msgstr "<bookmark_value>NOW function</bookmark_value>"
+msgstr "<bookmark_value>የ አሁን ተግባር</bookmark_value>"
#: func_now.xhp
msgctxt ""
@@ -65310,7 +65310,7 @@ msgctxt ""
"bm_id3145621\n"
"help.text"
msgid "<bookmark_value>NUMBERVALUE function</bookmark_value>"
-msgstr "<bookmark_value>NUMBERVALUE function</bookmark_value>"
+msgstr "<bookmark_value>የ ቁጥር ዋጋ ተግባር</bookmark_value>"
#: func_numbervalue.xhp
msgctxt ""
@@ -65416,7 +65416,7 @@ msgctxt ""
"bm_id3159390\n"
"help.text"
msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "<bookmark_value>ሁለተኛ ተግባር</bookmark_value>"
#: func_second.xhp
msgctxt ""
@@ -65688,7 +65688,7 @@ msgctxt ""
"par_id94162948227556\n"
"help.text"
msgid "The logical relation between criteria can be defined as logical AND (conjunction). In other words, if and only if all given criteria are met, a value from the corresponding cell of the given <emph>Sum_Range</emph> is taken into calculation of the sum.<br/>The <emph>Criterion</emph> needs to be a string expression, in particular, the <emph>Criterion</emph> needs to be enclosed in quotation marks (\"Criterion\") with the exception of the names of functions, cell references and the operator of a string concatenation (&).<br/>The operators equal to (=), not equal to (<>), greater than (>), greater than or equal to (>=), less than (<), and less than or equal to (<=) can be used in criterion arguments for comparison of numbers.<br/>The function can have up to 255 arguments, meaning that you can specify 127 criteria ranges and criteria for them."
-msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው <emph>ድምር_መጠን</emph>ይወሰዳል ወደ ድምር ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>), ይበልጣል ከ (>), ይበልጣል ከ ወይንም እኩል ነው ከ (>=), ያንሳል ከ (<), እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
+msgstr "የ logical ግንኙነት በ መመዘኛ መካከል መግለጽ ይቻላል እንደ logical እና (ማዋሀጃ). በሌላ አነጋገር ይህ ብቻ ከሆነ ሁሉንም የ ተሰጡትን መመዘኛዎች የሚያሟላ ከሆነ: ዋጋ ከ ተመሳሳይ ክፍል ከ ተሰጠው <emph>ድምር_መጠን</emph>ይወሰዳል ወደ ድምር ማስሊያ <br/> የ<emph>መመዘኛ</emph> የሚፈልገው የ ሀረግ መግለጫ ነው: ባጠቃላይ የ <emph>መመዘኛ</emph> በ ትምህርተ ጥቅስ መከበብ አለበት (\"መመዘኛ\") ለ ስም ተግባሮች የ ተለየ ነው: የ ክፍል ማመሳከሪያ እና አንቀሳቃሽ ለ ሀረግ ይገናኛሉ (&).<br/>በ አንቀሳቃሽ እኩል ይሆናል ከ (=), እኩል አይደለም ከ (<>) ይበልጣል ከ (>) ይበልጣል ከ ወይንም እኩል ነው ከ (>=) ያንሳል ከ (<) እና ያንሳል ከ ወይንም እኩል ነው ከ (<=) መጠቀም ይቻላል እንደ ክርክር መመዘኛ ለ ማነፃፀር ቁጥሮችን: <br/>ተግባሩ ሊኖረው ይችላል እስከ 255 ክርክሮች: ይህ ማለት እርስዎ ይወስናሉ 127 መመዘኛ መጠኖች እና መመዘኛ"
#: func_sumifs.xhp
msgctxt ""
@@ -66904,7 +66904,7 @@ msgctxt ""
"bm_id3149012\n"
"help.text"
msgid "<bookmark_value>WORKDAY function</bookmark_value>"
-msgstr "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "<bookmark_value>የ ስራ ቀኖች ተግባር</bookmark_value>"
#: func_workday.xhp
msgctxt ""
@@ -67242,7 +67242,7 @@ msgctxt ""
"bm_id3153982\n"
"help.text"
msgid "<bookmark_value>YEAR function</bookmark_value>"
-msgstr "<bookmark_value>YEAR function</bookmark_value>"
+msgstr "<bookmark_value>የ አመት ተግባር</bookmark_value>"
#: func_year.xhp
msgctxt ""
@@ -67339,7 +67339,7 @@ msgctxt ""
"bm_id3148735\n"
"help.text"
msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
-msgstr "<bookmark_value>አመት ክፍልፋይ ተግባር</bookmark_value>"
+msgstr "<bookmark_value>የ አመት ክፍልፋይ ተግባር</bookmark_value>"
#: func_yearfrac.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 7cd9ceea492..dab9aab19d0 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-26 20:33+0000\n"
+"PO-Revision-Date: 2017-02-17 03:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485462811.000000\n"
+"X-POOTLE-MTIME: 1487303011.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"bm_id3155132\n"
"help.text"
msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዦች; በራሱ አቀራረብ ተግባር</bookmark_value> <bookmark_value>defining;በራሱ አቀራረብ ተግባር ለ ሰንጠረዦች</bookmark_value> <bookmark_value>በራሱ አቀራረብ ተግባር</bookmark_value> <bookmark_value>አቀራረብ; ራሱ በራሱ አቀራረብ ሰንጠረዦች</bookmark_value> <bookmark_value>ራሱ በራሱ አቀራረብ ሰንጠረዦች</bookmark_value> <bookmark_value>ወረቀቶች;በራሱ አቀራረብ ተግባር</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዦች: በራሱ አቀራረብ ተግባር</bookmark_value> <bookmark_value>መግለጫ: በራሱ አቀራረብ ተግባር ለ ሰንጠረዦች</bookmark_value> <bookmark_value>በራሱ አቀራረብ ተግባር</bookmark_value> <bookmark_value>አቀራረብ: ራሱ በራሱ አቀራረብ ሰንጠረዦች</bookmark_value> <bookmark_value>ራሱ በራሱ አቀራረብ ሰንጠረዦች</bookmark_value> <bookmark_value>ወረቀቶች: በራሱ አቀራረብ ተግባር</bookmark_value>"
#: autoformat.xhp
msgctxt ""
@@ -1258,7 +1258,7 @@ msgctxt ""
"bm_id3150769\n"
"help.text"
msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
-msgstr "<bookmark_value>ተከታታይ ; ማስሊያ</bookmark_value> <bookmark_value>ማስሊያ; ተከታታይ</bookmark_value> <bookmark_value>ቀጥተኛ </bookmark_value> <bookmark_value>እድገት ተከታታይ</bookmark_value> <bookmark_value>ቀን ተከታታይ</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>ክፍሎች; ራሱ በራሱ መሙያ</bookmark_value> <bookmark_value>ራሱ በራሱ ክፍሎች መሙያ</bookmark_value> <bookmark_value>ራሱ በራሱ መሙያ ተግባሮች</bookmark_value> <bookmark_value>መሙያ;ክፍሎች, ራሱ በራሱ</bookmark_value>"
+msgstr "<bookmark_value>ተከታታይ: ማስሊያ</bookmark_value> <bookmark_value>ማስሊያ: ተከታታይ</bookmark_value> <bookmark_value>ቀጥተኛ </bookmark_value> <bookmark_value>እድገት ተከታታይ</bookmark_value> <bookmark_value>ቀን ተከታታይ</bookmark_value> <bookmark_value>በ 2 ሐይል ማስሊያ</bookmark_value> <bookmark_value>ክፍሎች: ራሱ በራሱ መሙያ</bookmark_value> <bookmark_value>ራሱ በራሱ ክፍሎች መሙያ</bookmark_value> <bookmark_value>ራሱ በራሱ መሙያ ተግባሮች</bookmark_value> <bookmark_value>መሙያ: ክፍሎች: ራሱ በራሱ</bookmark_value>"
#: calc_series.xhp
msgctxt ""
@@ -1442,7 +1442,7 @@ msgctxt ""
"bm_id3150769\n"
"help.text"
msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
-msgstr "<bookmark_value>ማስሊያ: የ ሰአት ልዩነቱን</bookmark_value><bookmark_value>time differences</bookmark_value>"
+msgstr "<bookmark_value>ማስሊያ: የ ሰአት ልዩነቱን</bookmark_value><bookmark_value>የ ሰአት ልዩነት</bookmark_value>"
#: calc_timevalues.xhp
msgctxt ""
@@ -11258,7 +11258,7 @@ msgctxt ""
"bm_id3155411\n"
"help.text"
msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
-msgstr "<bookmark_value>ተግባሮች; በ ተጠቃሚው-የሚገለጹ</bookmark_value><bookmark_value>በ ተጠቃሚው-የሚገለጹ ተግባሮች</bookmark_value><bookmark_value>Basic IDE በ ተጠቃሚው-የሚገለጹ ተግባሮች</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;ተግባሮች</bookmark_value>"
+msgstr "<bookmark_value>ተግባሮች; በ ተጠቃሚው-የሚገለጹ</bookmark_value><bookmark_value>በ ተጠቃሚው-የሚገለጹ ተግባሮች</bookmark_value><bookmark_value>Basic IDE በ ተጠቃሚው-የሚገለጹ ተግባሮች</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming; ተግባሮች</bookmark_value>"
#: userdefined_function.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index d99460595ab..b95d5af62d2 100644
--- a/source/am/helpcontent2/source/text/schart/01.po
+++ b/source/am/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ 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: 2017-01-28 22:43+0000\n"
+"PO-Revision-Date: 2017-02-17 02:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485643388.000000\n"
+"X-POOTLE-MTIME: 1487297279.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"bm_id84231\n"
"help.text"
msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
-msgstr "<bookmark_value>የ ተበታተነ ቻርትስ</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>የ ቻርትስ አይነት: XY (የ ተበተነ)</bookmark_value><bookmark_value>ስህተት መጠቆሚያ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>የ ስህተት መደርደሪያ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>መካከለኛ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ስታስቲክስ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ልዩነቶች በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>መደበኛ ልዩነቶች በ ቻርትስ ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>የ ተበታተነ ቻርትስ</bookmark_value><bookmark_value>XY ቻርትስ</bookmark_value><bookmark_value>የ ቻርትስ አይነት: XY (የ ተበተነ)</bookmark_value><bookmark_value>ስህተት መጠቆሚያ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>የ ስህተት መደርደሪያ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>መካከለኛ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ስታስቲክስ በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>ልዩነቶች በ ቻርትስ ውስጥ</bookmark_value><bookmark_value>መደበኛ ልዩነቶች በ ቻርትስ ውስጥ</bookmark_value>"
#: type_xy.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 399dd4d384c..744de866f1c 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-30 19:53+0000\n"
+"PO-Revision-Date: 2017-02-20 03:02+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485806026.000000\n"
+"X-POOTLE-MTIME: 1487559763.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -17361,7 +17361,7 @@ msgctxt ""
"par_id3149998\n"
"help.text"
msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
-msgstr "ቁጥሮች ለማሳየት በ መጠቀም የ ቁጥር ባህሪዎች: ይጠቀሙ የ [ተፈጥሮ ቁጥር], [ተፈጥሮ ቁጥር2], ... [ተፈጥሮ ቁጥር11] ማሻሻያ በ መጀመሪያው የ ቁጥር አቀራረብ ኮዶች ውስጥ"
+msgstr "ቁጥሮች ለማሳየት በ መጠቀም የ ቁጥር ባህሪዎች: ይጠቀሙ የ [ተፈጥሮ ቁጥር1], [ተፈጥሮ ቁጥር2], ... [ተፈጥሮ ቁጥር11] ማሻሻያ በ መጀመሪያው የ ቁጥር አቀራረብ ኮዶች ውስጥ"
#: 05020301.xhp
msgctxt ""
@@ -17377,7 +17377,7 @@ msgctxt ""
"par_id3152546\n"
"help.text"
msgid "[NatNum1][$-411]0"
-msgstr "[የ ተፈጥሮ ቁጥር][$-411]0"
+msgstr "[የ ተፈጥሮ ቁጥር1][$-411]0"
#: 05020301.xhp
msgctxt ""
@@ -34424,7 +34424,7 @@ msgctxt ""
"bm_id3152876\n"
"help.text"
msgid "<bookmark_value>AutoCorrect function; replacement table</bookmark_value><bookmark_value>replacement table</bookmark_value><bookmark_value>replacing; AutoCorrect function</bookmark_value><bookmark_value>text; replacing with format</bookmark_value><bookmark_value>frames; AutoCorrect function</bookmark_value><bookmark_value>pictures; inserting automatically</bookmark_value><bookmark_value>AutoCorrect function; pictures and frames</bookmark_value>"
-msgstr "<bookmark_value>በራሱ አራሚ ተግባር; መቀየሪያ ሰንጠረዥ</bookmark_value><bookmark_value>መቀየሪያ ሰንጠረዥች</bookmark_value><bookmark_value>መቀየሪያ; በራሱ አራሚ ተግባር</bookmark_value><bookmark_value>ጽሁፍ; መቀየሪያ በ አቀራረብ</bookmark_value><bookmark_value>ክፈፎች; በራሱ አራሚ ተግባር</bookmark_value><bookmark_value>ስእሎች; ማስገቢያ ራሱ በራሱ</bookmark_value> <bookmark_value> በራሱ አራሚ ተግባር; ስእሎች እና ክፈፎች</bookmark_value>"
+msgstr "<bookmark_value>በራሱ አራሚ ተግባር: መቀየሪያ ሰንጠረዥ</bookmark_value><bookmark_value>መቀየሪያ ሰንጠረዥች</bookmark_value><bookmark_value>መቀየሪያ; በራሱ አራሚ ተግባር</bookmark_value><bookmark_value>ጽሁፍ: መቀየሪያ በ አቀራረብ</bookmark_value><bookmark_value>ክፈፎች: በራሱ አራሚ ተግባር</bookmark_value><bookmark_value>ስእሎች: ማስገቢያ ራሱ በራሱ</bookmark_value> <bookmark_value> በራሱ አራሚ ተግባር: ስእሎች እና ክፈፎች</bookmark_value>"
#: 06040200.xhp
msgctxt ""
@@ -34725,7 +34725,7 @@ msgctxt ""
"bm_id3153899\n"
"help.text"
msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
-msgstr "<bookmark_value>ጥቅሶች; ማሻሻያ</bookmark_value><bookmark_value>ማሻሻያ ጥቅሶች</bookmark_value><bookmark_value>በራሱ አራሚ ተግባር; ጥቅሶች</bookmark_value><bookmark_value>መቀየሪያ;መደበኛ ቁጥሮች</bookmark_value><bookmark_value>መደበኛ ቁጥሮች;መቀየሪያ</bookmark_value>"
+msgstr "<bookmark_value>ጥቅሶች: ማሻሻያ</bookmark_value><bookmark_value>ማሻሻያ ጥቅሶች</bookmark_value><bookmark_value>በራሱ አራሚ ተግባር: ጥቅሶች</bookmark_value><bookmark_value>መቀየሪያ: መደበኛ ቁጥሮች</bookmark_value><bookmark_value>መደበኛ ቁጥሮች: መቀየሪያ</bookmark_value>"
#: 06040400.xhp
msgctxt ""
@@ -34902,7 +34902,7 @@ msgctxt ""
"bm_id3152823\n"
"help.text"
msgid "<bookmark_value>AutoCorrect function; context menu</bookmark_value><bookmark_value>spellcheck; context menus</bookmark_value>"
-msgstr "<bookmark_value>በራሱ አራሚ ተግባር; የ አገባብ ዝርዝር</bookmark_value><bookmark_value>ፊደል ማረሚያ; የ አገባብ ዝርዝር</bookmark_value>"
+msgstr "<bookmark_value>በራሱ አራሚ ተግባር: የ አገባብ ዝርዝር</bookmark_value><bookmark_value>ፊደል ማረሚያ: የ አገባብ ዝርዝር</bookmark_value>"
#: 06040500.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index 0d4d96662cb..9c7f0532bbe 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.po
@@ -4,7 +4,7 @@ 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-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-01-30 19:29+0000\n"
+"PO-Revision-Date: 2017-02-19 19:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485804540.000000\n"
+"X-POOTLE-MTIME: 1487531773.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -9112,7 +9112,7 @@ msgctxt ""
"par_idN10565\n"
"help.text"
msgid "The ADO interface is a Microsoft Windows proprietary container for connecting to databases."
-msgstr ""
+msgstr "የ ADO ገጽታ የ Microsoft Windows proprietary ማጠራቀሚያ ነው ከ ዳታቤዝ ጋር ለ መገናኘት"
#: dabawiz02ado.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 569efd25974..fbcbd554541 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-15 16:58+0000\n"
+"PO-Revision-Date: 2017-02-19 19:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487177888.000000\n"
+"X-POOTLE-MTIME: 1487531955.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -14721,7 +14721,7 @@ msgctxt ""
"par_id2507201516150422\n"
"help.text"
msgid "The use of UNO Extended Types in Basic programs can restrain interoperability of the program when executed in other office suites."
-msgstr ""
+msgstr "የ UNO የ ተስፋፋ አይነት መጠቀም በ Basic ፕሮግራሞች ውስጥ መቀያየር ሊከለክል ይችላል ፕሮግራም ሲፈጸም በ ሌሎች ቢሮ ክፍሎች ውስጥ"
#: BasicIDE.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index c86144dc864..4077ef6d2a4 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-30 17:39+0000\n"
+"PO-Revision-Date: 2017-02-17 01:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485797984.000000\n"
+"X-POOTLE-MTIME: 1487296143.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6849,7 +6849,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "The factorial is not scaled (example: \"fact stack{a#b}\" and \"fact {a over b}\") but is oriented using the baseline or center of the arguments."
-msgstr ""
+msgstr "ይህ ፋክቶሪያል የ ተመጠነ አይደለም (ለምሳሌ: \"በ ትክክል መከመሪያ{a#b}\" እና \"በ ትክክል {a ከ ላይ b}\") ነገር ግን የ መሰረታዊ መስመር ወይንም የ ክርክሩን መሀከል በ መጠቀም አቅጣጫ ማስያዝ ይቻላል"
#: 03091400.xhp
msgctxt ""
@@ -7145,7 +7145,7 @@ msgctxt ""
"par_id8633686\n"
"help.text"
msgid "a boper %SYM1 b"
-msgstr ""
+msgstr "a boper %SYM1 b"
#: 03091501.xhp
msgctxt ""
@@ -9159,7 +9159,7 @@ msgctxt ""
"146\n"
"help.text"
msgid "Limes inferior"
-msgstr ""
+msgstr "Limes inferior"
#: 03091505.xhp
msgctxt ""
@@ -11622,7 +11622,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/fonttypedialog/functionCB\">Select the fonts for names and properties of functions.</ahelp> For example, the functions in the formula x=SIN(y) are =SIN( )."
-msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/functionCB\">ይምረጡ ፊደሎች ለ ስም እና ባህሪዎች ለ ተግባሮች </ahelp> ለምሳሌ: ተግባሮች በ መቀመሪያ ውስጥ መቀመሪያ x=SIN(y) ናቸው =SIN( )."
+msgstr "<ahelp hid=\"modules/smath/ui/fonttypedialog/functionCB\">ይምረጡ ፊደሎች ለ ስም እና ባህሪዎች ለ ተግባሮች </ahelp> ለምሳሌ: ተግባሮች በ መቀመሪያ ውስጥ መቀመሪያ x=ሳይን(y) ናቸው =ሳይን( )."
#: 05010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 73993710794..a7d474349f3 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-28 17:48+0000\n"
+"PO-Revision-Date: 2017-02-17 01:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485625693.000000\n"
+"X-POOTLE-MTIME: 1487296212.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1586,7 +1586,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "With the <emph>Repeat search</emph> icon on the <emph>Navigation</emph> toolbar you can repeat a search you started with the <emph>Search and Replace</emph> dialog. To do this, click the icon. The blue arrow buttons on the vertical scrollbar now take on the functions <emph>Continue search forwards</emph> and <emph>Continue search backwards</emph>. If you now click one of the arrow surfaces, the search will be continued for the term entered in the Search and Replace dialog."
-msgstr "በ <emph>ፍለጋውን መድገሚያ</emph> ምልክት በ <emph>መቃኛ</emph> እቃ መደርደሪያ ውስጥ: እርስዎ ፍለጋውን መድገም ይችላሉ የ ጀመረቱን በ <emph>መፈለጊያ እና መቀየሪያ</emph> ንግግር: ይህን ለማድረግ ይጫኑ ምልክቱን: የ ሰማያዊ ቀስት ቁልፍ በ ቁመት መሸብለያ መደርደሪያ ተግባሩን ይወስዳል: <emph>ይቀጥሉ መፈለጊያ ወደ ፊት</emph> እና <emph>ይቀጥሉ መፈለጊያ ወደ ኋላ</emph>. እርስዎ አሁን አንዱን ቀስት ላይ ከ ተጫኑ ፍለጋው ይቀጥላል ላስገቡት መፈለጊያ ቃል በ መፈለጊያ እና መቀየሪያ ንግግር ውስጥ"
+msgstr "በ <emph>ፍለጋውን መድገሚያ</emph> ምልክት በ <emph>መቃኛ</emph> እቃ መደርደሪያ ውስጥ: እርስዎ ፍለጋውን መድገም ይችላሉ የ ጀመረቱን በ <emph>መፈለጊያ እና መቀየሪያ</emph> ንግግር: ይህን ለማድረግ ይጫኑ ምልክቱን: የ ሰማያዊ ቀስት ቁልፍ በ ቁመት መሸብለያ መደርደሪያ ተግባሩን ይወስዳል: <emph>ይቀጥሉ መፈለጊያ ወደ ፊት</emph> እና <emph>ይቀጥሉ መፈለጊያ ወደ ኋላ</emph> እርስዎ አሁን አንዱን ቀስት ላይ ከ ተጫኑ ፍለጋው ይቀጥላል ላስገቡት መፈለጊያ ቃል በ መፈለጊያ እና መቀየሪያ ንግግር ውስጥ"
#: 02110100.xhp
msgctxt ""
@@ -22013,7 +22013,7 @@ msgctxt ""
"bm_id3153925\n"
"help.text"
msgid "<bookmark_value>AutoCorrect function;text documents</bookmark_value>"
-msgstr "<bookmark_value>በራሱ አራሚ ተግባር;የ ጽሁፍ ሰነዶች</bookmark_value>"
+msgstr "<bookmark_value>በራሱ አራሚ ተግባር: የ ጽሁፍ ሰነዶች</bookmark_value>"
#: 05150000.xhp
msgctxt ""
@@ -22123,7 +22123,7 @@ msgctxt ""
"bm_id2655415\n"
"help.text"
msgid "<bookmark_value>tables;AutoFormat function</bookmark_value> <bookmark_value>styles;table styles</bookmark_value> <bookmark_value>AutoFormat function for tables</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ;በራሱ አቀራረብ ተግባሮች</bookmark_value> <bookmark_value>ዘዴዎች;የሰንጠረዥ ዘዴዎች</bookmark_value> <bookmark_value>በራሱ አቀራረብ ተግባሮች ለ ሰንጠረዥ</bookmark_value>"
+msgstr "<bookmark_value>ሰንጠረዥ: በራሱ አቀራረብ ተግባሮች</bookmark_value> <bookmark_value>ዘዴዎች: የ ሰንጠረዥ ዘዴዎች</bookmark_value> <bookmark_value>በራሱ አቀራረብ ተግባሮች ለ ሰንጠረዥ</bookmark_value>"
#: 05150101.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index 17de4becd1e..f25a56acf10 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ 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: 2017-01-30 17:11+0000\n"
+"PO-Revision-Date: 2017-02-17 01:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485796303.000000\n"
+"X-POOTLE-MTIME: 1487296242.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertCtrl\">The toolbar contains various functions for inserting frames, graphics, tables, and other objects.</ahelp>"
-msgstr "<ahelp hid=\".uno:InsertCtrl\">የእቃ መደርደሪያው በርካታ ተግባሮችን እንደ ከፈፍ: ንድፍ: ሰንጠረዥ እና ለሎችም እቃዎችን ለማስገቢያ ይዟል</ahelp>"
+msgstr "<ahelp hid=\".uno:InsertCtrl\">የ እቃ መደርደሪያው በርካታ ተግባሮችን እንደ ከፈፍ: ንድፍ: ሰንጠረዥ እና ለሎችም እቃዎችን ለማስገቢያ ይዟል</ahelp>"
#: 18010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 70a7aa24aaf..47b35b3c3c3 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ 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-12-01 12:12+0100\n"
-"PO-Revision-Date: 2017-01-29 21:42+0000\n"
+"PO-Revision-Date: 2017-02-20 03:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485726151.000000\n"
+"X-POOTLE-MTIME: 1487559819.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -781,7 +781,7 @@ msgctxt ""
"bm_id3152887\n"
"help.text"
msgid "<bookmark_value>AutoCorrect function; adding exceptions</bookmark_value> <bookmark_value>exceptions; AutoCorrect function</bookmark_value> <bookmark_value>abbreviations</bookmark_value> <bookmark_value>capital letters;avoiding after specific abbreviations</bookmark_value>"
-msgstr "<bookmark_value>በራሱ ማረሚያ ተግባር; የተለዩ መጨመሪያ</bookmark_value> <bookmark_value>የተለዩ; በራሱ ማረሚያ ተግባር</bookmark_value> <bookmark_value>ምህጻረ ቃል</bookmark_value> <bookmark_value>አቢይ ፊደሎች;ከተወሰነ ምህጻረ ቃል በኋላ ማስወገጃ</bookmark_value>"
+msgstr "<bookmark_value>በራሱ ማረሚያ ተግባር: የተለዩ መጨመሪያ</bookmark_value> <bookmark_value>የተለዩ: በራሱ ማረሚያ ተግባር</bookmark_value> <bookmark_value>ምህጻረ ቃል</bookmark_value> <bookmark_value>አቢይ ፊደሎች: ከ ተወሰነ ምህጻረ ቃል በኋላ ማስወገጃ</bookmark_value>"
#: autocorr_except.xhp
msgctxt ""
@@ -5683,7 +5683,7 @@ msgctxt ""
"par_id1590014\n"
"help.text"
msgid "In the master document you now see the new style Style1 from the first subdocument. All Style1 paragraphs in the master document will be shown using the Style1 attributes from the first subdocument. However, the second subdocument by itself will not be changed. You see the Style1 paragraphs from the second subdocument with different attributes, depending whether you open the sub2.odt document by itself or as part of the master document."
-msgstr "በ ዋናው ሰነድ ውስጥ እርስዎ አሁን ይታይዎታል አዲስ ዘዴ: ይህ ዘዴ ከ መጀመሪያው ንዑስ ሰነድ ውስጥ: ሁሉም ዘዴ1 አንቀጾች በ ዋናው ሰነድ ውስጥ ይታያሉ በ መጠቀም የ ዘዴ1 መለያዎች ከ መጀመሪያው ንዑስ ሰነድ ውስጥ: ነገር ግን ሁለተኛው ንዑስ ሰነድ ውስጥ በራሱ አይቀየርም: ለ እርስዎ ይታያል የ ዘዴ1 አንቀጽ ከ ሁለተኛው ንዑስ ሰነድ ከ ተለያዩ መለያዎች ጋር: እንደ ሁኔታው እርስዎ ከ ከፈቱ የ ንዑስ2.odt ሰነድ በራሱ ወይንም እንደ ዋናው ሰነድ"
+msgstr "በ ዋናው ሰነድ ውስጥ እርስዎ አሁን ይታይዎታል አዲስ ዘዴ: ይህ ዘዴ1 ከ መጀመሪያው ንዑስ ሰነድ ውስጥ: ሁሉም ዘዴ1 አንቀጾች በ ዋናው ሰነድ ውስጥ ይታያሉ በ መጠቀም የ ዘዴ1 መለያዎች ከ መጀመሪያው ንዑስ ሰነድ ውስጥ: ነገር ግን ሁለተኛው ንዑስ ሰነድ ውስጥ በራሱ አይቀየርም: ለ እርስዎ ይታያል የ ዘዴ1 አንቀጽ ከ ሁለተኛው ንዑስ ሰነድ ከ ተለያዩ መለያዎች ጋር: እንደ ሁኔታው እርስዎ ከ ከፈቱ የ ንዑስ2.odt ሰነድ በራሱ ወይንም እንደ ዋናው ሰነድ"
#: globaldoc.xhp
msgctxt ""
diff --git a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 6570e8bf42f..ce723489daf 100644
--- a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ 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-12-30 03:00+0000\n"
+"PO-Revision-Date: 2017-02-16 22:25+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483066816.000000\n"
+"X-POOTLE-MTIME: 1487283914.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"OOO_CONTROL_59\n"
"LngText.text"
msgid "<selected feature path>"
-msgstr "<selected feature path>"
+msgstr "<የ ተመረጠው ገጽታ መንገድ>"
#: Control.ulf
msgctxt ""
diff --git a/source/am/librelogo/source/pythonpath.po b/source/am/librelogo/source/pythonpath.po
index 1815fe8ae23..bd3b25a0db5 100644
--- a/source/am/librelogo/source/pythonpath.po
+++ b/source/am/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-12-31 19:37+0000\n"
+"PO-Revision-Date: 2017-02-16 22:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483213021.000000\n"
+"X-POOTLE-MTIME: 1487284432.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"SQRT\n"
"property.text"
msgid "sqrt"
-msgstr "sqrt"
+msgstr "ስኴር ሩት"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"LOG10\n"
"property.text"
msgid "log10"
-msgstr "log10"
+msgstr "ሎግ10"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"SIN\n"
"property.text"
msgid "sin"
-msgstr "sin"
+msgstr "ሳይን"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"COS\n"
"property.text"
msgid "cos"
-msgstr "cos"
+msgstr "ኮስ"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"TUPLE\n"
"property.text"
msgid "tuple"
-msgstr "tuple"
+msgstr "ቱፕል"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"PI\n"
"property.text"
msgid "pi|π"
-msgstr "pi|π"
+msgstr "ፓይ|π"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"PT\n"
"property.text"
msgid "pt"
-msgstr "pt"
+msgstr "ነጥብ"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/am/nlpsolver/src/locale.po b/source/am/nlpsolver/src/locale.po
index 2cfbb03f173..f0fa21af087 100644
--- a/source/am/nlpsolver/src/locale.po
+++ b/source/am/nlpsolver/src/locale.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-11-16 13:38+0000\n"
+"PO-Revision-Date: 2017-02-16 22:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479303490.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487284588.000000\n"
#: NLPSolverCommon_en_US.properties
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"NLPSolverCommon.Properties.EnhancedSolverStatus\n"
"property.text"
msgid "Show enhanced solver status"
-msgstr "Show enhanced solver status"
+msgstr "የ መፍትሄ መጨመሪያ ሁኔታዎችን ማሳያ"
#: NLPSolverCommon_en_US.properties
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office.po b/source/am/officecfg/registry/data/org/openoffice/Office.po
index c87b2ebbdbc..693203e7bed 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ 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: 2017-01-30 22:33+0000\n"
+"PO-Revision-Date: 2017-02-20 01:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485815618.000000\n"
+"X-POOTLE-MTIME: 1487555180.000000\n"
#: Addons.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "F~ormula"
-msgstr "F~ormula"
+msgstr "መ~ቀመሪያ"
#: Common.xcu
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Beige"
-msgstr "Beige"
+msgstr "ቤዥ"
#: FormWizard.xcu
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"STR_IMAGE_RESOLUTION_0\n"
"value.text"
msgid "0;<no change>"
-msgstr "0;<no change>"
+msgstr "0;<ለውጥ የለም>"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"STR_IMAGE_RESOLUTION_1\n"
"value.text"
msgid "90;90 DPI (screen resolution)"
-msgstr "90;90 DPI (screen resolution)"
+msgstr "90;90 ነጥብ (የ መመልከቻ ሪዞሊሽን)"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"STR_IMAGE_RESOLUTION_3\n"
"value.text"
msgid "300;300 DPI (print resolution)"
-msgstr "300;300 DPI (print resolution)"
+msgstr "300;300 ነጥብ (የ ማተሚያ ሪዞሊሽን)"
#: PresentationMinimizer.xcu
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Alt-Page Up"
-msgstr "Alt-Page Up"
+msgstr "Alt+ገጽ ወደ ላይ"
#: PresenterScreen.xcu
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Alt-Page Down"
-msgstr "Alt-Page Down"
+msgstr "Alt+ገጽ ወደ ታች"
#: PresenterScreen.xcu
msgctxt ""
@@ -5027,7 +5027,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardType"
-msgstr "CreditCardType"
+msgstr "የ ክሬዲት ካርድ አይነት"
#: TableWizard.xcu
msgctxt ""
@@ -5036,7 +5036,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCardType"
-msgstr "CCardType"
+msgstr "የ ክሬዲት ካርድ አይነት"
#: TableWizard.xcu
msgctxt ""
@@ -5045,7 +5045,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardNumber"
-msgstr "CreditCardNumber"
+msgstr "የ ክሬዲት ካርድ ቁጥር"
#: TableWizard.xcu
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCardNo"
-msgstr "CCardNo"
+msgstr "የ ክሬዲት ካርድ ቁጥር"
#: TableWizard.xcu
msgctxt ""
@@ -5081,7 +5081,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardExpDate"
-msgstr "CreditCardExpDate"
+msgstr "የ ክሬዲት ካርድ ጊዜው የሚያልፍበት"
#: TableWizard.xcu
msgctxt ""
@@ -5090,7 +5090,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCExpDate"
-msgstr "CCExpDate"
+msgstr "የ ክሬዲት ካርድ ጊዜው የሚያልፍበት ቀን"
#: TableWizard.xcu
msgctxt ""
@@ -5099,7 +5099,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CreditCardAuthorizationNumber"
-msgstr "CreditCardAuthorizationNumber"
+msgstr "የ ክሬዲት ካርድ የ ተሰጠው ቁጥር"
#: TableWizard.xcu
msgctxt ""
@@ -5108,7 +5108,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CCAuthorNo"
-msgstr "CCAuthorNo"
+msgstr "የ ክሬዲት ካርድ የ ተሰጠው ቁጥር"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index 968664a1f0f..42e7378a275 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-01-30 22:57+0000\n"
+"PO-Revision-Date: 2017-02-16 23:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485817077.000000\n"
+"X-POOTLE-MTIME: 1487288255.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -6764,7 +6764,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sphere"
-msgstr "Sphere"
+msgstr "ስፌር"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cone"
-msgstr "Cone"
+msgstr "ኮን"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6899,7 +6899,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shell"
-msgstr "Shell"
+msgstr "ሼል"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6908,7 +6908,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Torus"
-msgstr "Torus"
+msgstr "ቶሩስ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6980,7 +6980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dimen~sions..."
-msgstr "Dimen~sions..."
+msgstr "አቅጣ~ጫዎች..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7082,13 +7082,14 @@ msgid "~Hyphenation"
msgstr "~ጭረት"
#: DrawImpressCommands.xcu
+#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:NewRouting\n"
"Label\n"
"value.text"
msgid "Reset Routing"
-msgstr "Reset Routing"
+msgstr "Routing እንደነበር መመለሻ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10499,7 +10500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spiral In"
-msgstr "Spiral In"
+msgstr "ወደ ውስጥ ማሽከርከሪያ"
#: Effects.xcu
msgctxt ""
@@ -11876,7 +11877,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heartbeat"
-msgstr "Heartbeat"
+msgstr "የ ልብ ምት"
#: Effects.xcu
msgctxt ""
@@ -11885,7 +11886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curvy Right"
-msgstr "Curvy Right"
+msgstr "ክብ በ ቀኝ"
#: Effects.xcu
msgctxt ""
@@ -11894,7 +11895,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decaying Wave"
-msgstr "Decaying Wave"
+msgstr "ለስላሳ ማእበል"
#: Effects.xcu
msgctxt ""
@@ -12047,7 +12048,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curved X"
-msgstr "Curved X"
+msgstr "ክብ X"
#: Effects.xcu
msgctxt ""
@@ -12065,7 +12066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Figure 8 Four"
-msgstr "Figure 8 Four"
+msgstr "አካል 8 አራት"
#: Effects.xcu
msgctxt ""
@@ -12074,7 +12075,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Figure 8"
-msgstr "Horizontal Figure 8"
+msgstr "የ አግድም አካል 8"
#: Effects.xcu
msgctxt ""
@@ -12083,7 +12084,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inverted Square"
-msgstr "Inverted Square"
+msgstr "የ ተገለበጠ ስኴር"
#: Effects.xcu
msgctxt ""
@@ -12092,7 +12093,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inverted Triangle"
-msgstr "Inverted Triangle"
+msgstr "የ ተገለበጠ ትሪያንግል"
#: Effects.xcu
msgctxt ""
@@ -15962,7 +15963,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rotation Angle"
-msgstr "Rotation Angle"
+msgstr "የ ማዞሪያ አንግል"
#: GenericCommands.xcu
msgctxt ""
@@ -16115,7 +16116,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gamma"
-msgstr "Gamma"
+msgstr "ጋማ"
#: GenericCommands.xcu
msgctxt ""
@@ -21472,7 +21473,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Explorer On/Off"
-msgstr "Explorer On/Off"
+msgstr "መቃኛ ማብሪያ/ማጥፊያ"
#: GenericCommands.xcu
msgctxt ""
@@ -21535,7 +21536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lighting"
-msgstr "Lighting"
+msgstr "መብረቅ"
#: GenericCommands.xcu
msgctxt ""
@@ -21544,7 +21545,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Surface"
-msgstr "Surface"
+msgstr "የ ውጪ ክፍል"
#: GenericCommands.xcu
msgctxt ""
@@ -21949,7 +21950,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ormat"
-msgstr "F~ormat"
+msgstr "አ~ቀራረብ"
#: GenericCommands.xcu
msgctxt ""
@@ -27277,7 +27278,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rmula"
-msgstr "Fo~rmula"
+msgstr "መቀ~መሪያ"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/readlicense_oo/docs.po b/source/am/readlicense_oo/docs.po
index 62e35e7b9e6..ccf1a4e3ec2 100644
--- a/source/am/readlicense_oo/docs.po
+++ b/source/am/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ 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-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-01-30 23:14+0000\n"
+"PO-Revision-Date: 2017-02-16 23:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485818088.000000\n"
+"X-POOTLE-MTIME: 1487289133.000000\n"
#: readme.xrm
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"mackeys1\n"
"readmeitem.text"
msgid "The application help of ${PRODUCTNAME} may use shortcut combinations for PC keyboards only."
-msgstr "The application help of ${PRODUCTNAME} may use shortcut combinations for PC keyboards only."
+msgstr "የ መተግበሪያ እርዳታ ለ ${PRODUCTNAME} የ አቋራጭ መቀላቀያ ይጠቀማል ለ ፒሲ የ ፊደል ገበታ ብቻ"
#: readme.xrm
msgctxt ""
diff --git a/source/am/sc/source/core/src.po b/source/am/sc/source/core/src.po
index 6c4025c254c..456a496c2ac 100644
--- a/source/am/sc/source/core/src.po
+++ b/source/am/sc/source/core/src.po
@@ -3,18 +3,18 @@ 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: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2014-04-01 17:25+0000\n"
-"Last-Translator: Samson <sambelet@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-02-16 23:53+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1396373115.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487289204.000000\n"
#: compiler.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "Mathematical"
-msgstr "Mathematical"
+msgstr "ሂሳብ"
#: compiler.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"8\n"
"string.text"
msgid "Statistical"
-msgstr "Statistical"
+msgstr "ስታትስቲክስ"
#: compiler.src
msgctxt ""
diff --git a/source/am/sc/source/ui/StatisticsDialogs.po b/source/am/sc/source/ui/StatisticsDialogs.po
index 563871dacf2..9c13ab448fe 100644
--- a/source/am/sc/source/ui/StatisticsDialogs.po
+++ b/source/am/sc/source/ui/StatisticsDialogs.po
@@ -4,7 +4,7 @@ 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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-12-10 19:36+0000\n"
+"PO-Revision-Date: 2017-02-16 23:54+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1481398608.000000\n"
+"X-POOTLE-MTIME: 1487289245.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"STR_ANOVA_LABEL_P_VALUE\n"
"string.text"
msgid "P-value"
-msgstr "P-value"
+msgstr "P-ዋጋ"
#: StatisticsDialogs.src
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"STR_ANOVA_LABEL_F_CRITICAL\n"
"string.text"
msgid "F critical"
-msgstr "F critical"
+msgstr "F አደገኛ"
#: StatisticsDialogs.src
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"STR_RNG_PARAMETER_STANDARD_PROBABILITY\n"
"string.text"
msgid "p Value"
-msgstr "p Value"
+msgstr "p ዋጋ"
#: StatisticsDialogs.src
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"STR_P_VALUE_LABEL\n"
"string.text"
msgid "P-value"
-msgstr "P-value"
+msgstr "P-ዋጋ"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/am/sc/source/ui/src.po b/source/am/sc/source/ui/src.po
index f3850b4f9af..52067c00149 100644
--- a/source/am/sc/source/ui/src.po
+++ b/source/am/sc/source/ui/src.po
@@ -4,7 +4,7 @@ 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-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-01-30 22:38+0000\n"
+"PO-Revision-Date: 2017-02-19 21:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485815918.000000\n"
+"X-POOTLE-MTIME: 1487539891.000000\n"
#: filter.src
msgctxt ""
@@ -3349,7 +3349,7 @@ msgctxt ""
"STR_CHANGED_BLANK\n"
"string.text"
msgid "<empty>"
-msgstr "<empty>"
+msgstr "<ባዶ>"
#: globstr.src
msgctxt ""
@@ -9535,7 +9535,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Exponent"
-msgstr "Exponent"
+msgstr "ኤክስፖነንት"
#: scfuncs.src
msgctxt ""
@@ -9616,7 +9616,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the sum of the squares of the arguments."
-msgstr "Returns the sum of the squares of the arguments."
+msgstr "ለ ክርክር የ ስኴሮች ድምር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -9787,7 +9787,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The range from which the values are to be averaged."
-msgstr "The range from which the values are to be averaged."
+msgstr "የ መጠን ዋጋዎች መካከለኛው የሚወጣበት"
#: scfuncs.src
msgctxt ""
@@ -9877,7 +9877,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The range from which the values are to be averaged."
-msgstr "The range from which the values are to be averaged."
+msgstr "የ መጠን ዋጋዎች መካከለኛው የሚወጣበት"
#: scfuncs.src
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Angle"
-msgstr "Angle"
+msgstr "አንግል"
#: scfuncs.src
msgctxt ""
@@ -10687,7 +10687,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in radians for which the cosecant is to be calculated."
-msgstr "The angle in radians for which the cosecant is to be calculated."
+msgstr "አንግል በ ራዲያንስ ውስጥ ኮሴካንት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -10696,7 +10696,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Return the secant of an angle. SEC(x)=1/COS(x)"
-msgstr "Return the secant of an angle. SEC(x)=1/COS(x)"
+msgstr "የ አንግል ሴካንት ይመልሳል: ሰካንት(x)=1/ኮስ(x)"
#: scfuncs.src
msgctxt ""
@@ -10705,7 +10705,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Angle"
-msgstr "Angle"
+msgstr "አንግል"
#: scfuncs.src
msgctxt ""
@@ -10714,7 +10714,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in radians for which the secant is to be calculated."
-msgstr "The angle in radians for which the secant is to be calculated."
+msgstr "አንግል በ ራዲያንስ ውስጥ ሴካንት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -10732,7 +10732,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Angle"
-msgstr "Angle"
+msgstr "አንግል"
#: scfuncs.src
msgctxt ""
@@ -10759,7 +10759,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Angle"
-msgstr "Angle"
+msgstr "አንግል"
#: scfuncs.src
msgctxt ""
@@ -10768,7 +10768,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated."
-msgstr "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated."
+msgstr "የ ሀይፐርቦሊክ አንግል በ ራዲያንስ ውስጥ የ ሀይፐርቦሊክ ሴካንት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -10777,7 +10777,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts a radian to degrees"
-msgstr "Converts a radian to degrees"
+msgstr "ራዲያን ወደ ዲግሪ መቀየሪያ"
#: scfuncs.src
msgctxt ""
@@ -10795,7 +10795,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in a radian"
-msgstr "The angle in a radian"
+msgstr "አንግል በ ራዲያን"
#: scfuncs.src
msgctxt ""
@@ -10804,7 +10804,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts degrees to radians"
-msgstr "Converts degrees to radians"
+msgstr "ዲግሪዎች ወደ ራዲያንስ መቀየሪያ"
#: scfuncs.src
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The angle in degrees."
-msgstr "The angle in degrees."
+msgstr "አንግል በ ዲግሪዎች"
#: scfuncs.src
msgctxt ""
@@ -10831,7 +10831,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates the exponent for basis e."
-msgstr "Calculates the exponent for basis e."
+msgstr "ለ ኤክስፖነንት መሰረት e. ማስሊያ"
#: scfuncs.src
msgctxt ""
@@ -10849,7 +10849,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The exponent applied to base e."
-msgstr "The exponent applied to base e."
+msgstr "ኤክስፖነንት ይፈጸማል ለ መሰረት e."
#: scfuncs.src
msgctxt ""
@@ -14448,7 +14448,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the distribution function for a standard normal distribution."
-msgstr "Values of the distribution function for a standard normal distribution."
+msgstr "ዋጋዎች ለ ስርጭት ተግባር ለ መመደቢያ መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15168,7 +15168,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standard deviation. The standard deviation of the normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15249,7 +15249,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standard deviation. The standard deviation of the normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15294,7 +15294,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse normal distribution is to be calculated."
-msgstr "The probability value for which the inverse normal distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጥራት ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15330,7 +15330,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standard deviation. The standard deviation of the normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15357,7 +15357,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse normal distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ በ ግልባጭ መደበኛ ስርጭት የሚሰላበት"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጥራት ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15393,7 +15393,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the normal distribution."
-msgstr "Standard deviation. The standard deviation of the normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15402,7 +15402,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "The values of the standard normal cumulative distribution."
-msgstr "The values of the standard normal cumulative distribution."
+msgstr "ዋጋዎች ለ መመደቢያ መደበኛ የ ጥርቅም ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15420,9 +15420,10 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the standard normal distribution is to be calculated."
-msgstr "ዋጋው የ መደበኛ ስርጭት የሚሰላለት"
+msgstr "ዋጋው የ መመደቢያ መደበኛ ስርጭት የሚሰላለት"
#: scfuncs.src
+#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_STD_NORM_DIST_MS\n"
@@ -15474,7 +15475,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse standard normal distribution."
-msgstr "Values of the inverse standard normal distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ጥራት መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15492,7 +15493,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse standard normal distribution is to be calculated."
-msgstr "The probability value for which the inverse standard normal distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጥራት ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15501,7 +15502,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse standard normal distribution."
-msgstr "Values of the inverse standard normal distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ጥራት መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15519,7 +15520,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse standard normal distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ የ ግልባጭ መደበኛ ለ መደበኛ ስርጭት የሚሰላበት"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጥራት ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15582,7 +15583,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted."
-msgstr "The standard deviation of the log normal distribution. It is set to 1 if omitted."
+msgstr "የ መደበኛ ልዩነት ለ ሎግ መደበኛ ስርጭት: የሚሰናዳው 1 ነው ከተተወ"
#: scfuncs.src
msgctxt ""
@@ -15708,7 +15709,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse log normal distribution is to be calculated."
-msgstr "The probability value for which the inverse log normal distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ሎግ ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15744,7 +15745,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the log normal distribution."
-msgstr "Standard deviation. The standard deviation of the log normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ ሎጋሪዝም መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15771,7 +15772,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse log normal distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ የ ግልባጭ ሎግ መደበኛ ለ መደበኛ ስርጭት የሚሰላበት"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ሎግ ለ መደበኛ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15789,7 +15790,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Mean value. The mean value of the log normal distribution."
-msgstr "Mean value. The mean value of the log normal distribution."
+msgstr "አማካይ ዋጋ: አማካይ ዋጋ ለ ሎጋሪዝም መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15807,7 +15808,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Standard deviation. The standard deviation of the log normal distribution."
-msgstr "Standard deviation. The standard deviation of the log normal distribution."
+msgstr "መደበኛ ልዩነት: መደበኛ ልዩነት ለ ሎጋሪዝም መደበኛ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15816,7 +15817,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the exponential distribution."
-msgstr "Values of the exponential distribution."
+msgstr "ዋጋዎች ለ ኤክስፖኔንሺያል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15834,16 +15835,17 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value to which the exponential distribution is to be calculated."
-msgstr "The value to which the exponential distribution is to be calculated."
+msgstr "ዋጋ የ ኤክስፖኔንሺያል ስርጭት የሚሰላበት"
#: scfuncs.src
+#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_EXP_DIST\n"
"4\n"
"string.text"
msgid "lambda"
-msgstr "lambda"
+msgstr "ላምብዳ"
#: scfuncs.src
msgctxt ""
@@ -15852,7 +15854,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The parameters of the exponential distribution."
-msgstr "The parameters of the exponential distribution."
+msgstr "ደንቦች ለ ኤክስፖኔንሺያል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15879,7 +15881,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the exponential distribution."
-msgstr "Values of the exponential distribution."
+msgstr "ዋጋዎች ለ ኤክስፖኔንሺያል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15897,7 +15899,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value to which the exponential distribution is to be calculated."
-msgstr "The value to which the exponential distribution is to be calculated."
+msgstr "ዋጋ የ ኤክስፖኔንሺያል ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -15915,7 +15917,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The parameters of the exponential distribution."
-msgstr "The parameters of the exponential distribution."
+msgstr "ደንቦች ለ ኤክስፖኔንሺያል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15942,7 +15944,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
-msgstr "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."
+msgstr "የ ምናልባት ዋጋ መጠን ተግባር ወይንም የ ተጠራቀመ ስርጭት ተግባር ለ ጋማ ስርጭት ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -15969,7 +15971,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -15978,7 +15980,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Gamma distribution."
-msgstr "The Alpha parameter of the Gamma distribution."
+msgstr "የ አልፋ ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -15987,7 +15989,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -15996,7 +15998,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Gamma distribution."
-msgstr "The Beta parameter of the Gamma distribution."
+msgstr "የ ቤታ ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16050,7 +16052,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16059,7 +16061,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Gamma distribution."
-msgstr "The Alpha parameter of the Gamma distribution."
+msgstr "የ አልፋ ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16068,7 +16070,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16077,7 +16079,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Gamma distribution."
-msgstr "The Beta parameter of the Gamma distribution."
+msgstr "የ ቤታ ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16104,7 +16106,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse gamma distribution."
-msgstr "Values of the inverse gamma distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16122,7 +16124,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse gamma distribution is to be calculated."
-msgstr "The probability value for which the inverse gamma distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጋማ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16131,7 +16133,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16140,7 +16142,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha (shape) parameter of the Gamma distribution."
-msgstr "The Alpha (shape) parameter of the Gamma distribution."
+msgstr "የ አልፋ (ቅርጽ) ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16149,7 +16151,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16158,7 +16160,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta (scale) parameter of the Gamma distribution."
-msgstr "The Beta (scale) parameter of the Gamma distribution."
+msgstr "የ ቤታ (መመጠኛ) ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16167,7 +16169,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse gamma distribution."
-msgstr "Values of the inverse gamma distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16185,7 +16187,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse gamma distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ለ ግልባጭ ጋማ ስርጭት የሚሰላበት"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ጋማ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16194,7 +16196,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16203,7 +16205,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha (shape) parameter of the Gamma distribution."
-msgstr "The Alpha (shape) parameter of the Gamma distribution."
+msgstr "የ አልፋ (ቅርጽ) ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16212,7 +16214,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16221,7 +16223,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta (scale) parameter of the Gamma distribution."
-msgstr "The Beta (scale) parameter of the Gamma distribution."
+msgstr "የ ቤታ (መመጠኛ) ደንብ ለ ጋማ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16284,7 +16286,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the value of the Gamma function."
-msgstr "Returns the value of the Gamma function."
+msgstr "ዋጋ ለ ጋማ ተግባር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -16302,7 +16304,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the Gamma function is to be calculated."
-msgstr "The value for which the Gamma function is to be calculated."
+msgstr "ዋጋ የ ጋማ ተግባር የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16311,7 +16313,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the beta distribution."
-msgstr "Values of the beta distribution."
+msgstr "ዋጋዎች ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16329,7 +16331,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the beta distribution is to be calculated."
-msgstr "The value for which the beta distribution is to be calculated."
+msgstr "ዋጋ የ ቤታ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16338,7 +16340,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16347,7 +16349,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Beta distribution."
-msgstr "The Alpha parameter of the Beta distribution."
+msgstr "የ አልፋ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16356,7 +16358,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16365,7 +16367,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Beta distribution."
-msgstr "The Beta parameter of the Beta distribution."
+msgstr "የ ቤታ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16383,7 +16385,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "The starting value for the value interval of the distribution."
-msgstr "The starting value for the value interval of the distribution."
+msgstr "መጀመሪያ ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16401,7 +16403,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "The final value for the value interval of the distribution."
-msgstr "The final value for the value interval of the distribution."
+msgstr "የ መጨረሻው ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16428,7 +16430,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse beta distribution."
-msgstr "Values of the inverse beta distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16446,7 +16448,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse beta distribution is to be calculated."
-msgstr "The probability value for which the inverse beta distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቤታ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16455,7 +16457,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16464,7 +16466,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Beta distribution."
-msgstr "The Alpha parameter of the Beta distribution."
+msgstr "የ አልፋ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16473,7 +16475,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16482,7 +16484,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Beta distribution."
-msgstr "The Beta parameter of the Beta distribution."
+msgstr "የ ቤታ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16500,7 +16502,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "The starting value for the value interval of the distribution."
-msgstr "The starting value for the value interval of the distribution."
+msgstr "መጀመሪያ ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16518,7 +16520,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "The final value for the value interval of the distribution."
-msgstr "The final value for the value interval of the distribution."
+msgstr "የ መጨረሻው ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16527,7 +16529,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the beta distribution."
-msgstr "Values of the beta distribution."
+msgstr "ዋጋዎች ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16545,7 +16547,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the beta distribution is to be calculated."
-msgstr "The value for which the beta distribution is to be calculated."
+msgstr "ዋጋ የ ቤታ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16554,7 +16556,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16563,7 +16565,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Beta distribution."
-msgstr "The Alpha parameter of the Beta distribution."
+msgstr "የ አልፋ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16572,7 +16574,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16581,7 +16583,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Beta distribution."
-msgstr "The Beta parameter of the Beta distribution."
+msgstr "የ ቤታ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16617,7 +16619,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "The starting value for the value interval of the distribution."
-msgstr "The starting value for the value interval of the distribution."
+msgstr "መጀመሪያ ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16635,7 +16637,7 @@ msgctxt ""
"13\n"
"string.text"
msgid "The final value for the value interval of the distribution."
-msgstr "The final value for the value interval of the distribution."
+msgstr "የ መጨረሻው ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16644,7 +16646,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse beta distribution."
-msgstr "Values of the inverse beta distribution."
+msgstr "ዋጋዎች ለ ግልባጭ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16662,7 +16664,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse beta distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ከ ግልባጭ ቤታ ስርጭት የሚሰላበት"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቤታ ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16671,7 +16673,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16680,7 +16682,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The Alpha parameter of the Beta distribution."
-msgstr "The Alpha parameter of the Beta distribution."
+msgstr "የ አልፋ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16689,7 +16691,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16698,7 +16700,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Beta distribution."
-msgstr "The Beta parameter of the Beta distribution."
+msgstr "የ ቤታ ደንብ ለ ቤታ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16716,7 +16718,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "The starting value for the value interval of the distribution."
-msgstr "The starting value for the value interval of the distribution."
+msgstr "መጀመሪያ ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16734,7 +16736,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "The final value for the value interval of the distribution."
-msgstr "The final value for the value interval of the distribution."
+msgstr "የ መጨረሻው ዋጋ ለ ዋጋ ክፍተት ለ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16743,7 +16745,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the values of the Weibull distribution."
-msgstr "Returns the values of the Weibull distribution."
+msgstr "ዋጋዎች ይመልሳል ለ ዌይቡል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16761,7 +16763,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the Weibull distribution is to be calculated."
-msgstr "The value for which the Weibull distribution is to be calculated."
+msgstr "ዋጋ የ ዌይቡል ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16770,7 +16772,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Alpha"
-msgstr "Alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16788,7 +16790,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16797,7 +16799,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Weibull distribution."
-msgstr "The Beta parameter of the Weibull distribution."
+msgstr "የ ቤታ ደንብ ለ ዌይቡል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16824,7 +16826,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the values of the Weibull distribution."
-msgstr "Returns the values of the Weibull distribution."
+msgstr "ዋጋዎች ይመልሳል ለ ዌይቡል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16842,7 +16844,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the Weibull distribution is to be calculated."
-msgstr "The value for which the Weibull distribution is to be calculated."
+msgstr "ዋጋ የ ዌይቡል ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -16851,7 +16853,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Alpha"
-msgstr "Alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -16869,7 +16871,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "beta"
-msgstr "beta"
+msgstr "ቤታ"
#: scfuncs.src
msgctxt ""
@@ -16878,7 +16880,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The Beta parameter of the Weibull distribution."
-msgstr "The Beta parameter of the Weibull distribution."
+msgstr "የ ቤታ ደንብ ለ ዌይቡል ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16905,7 +16907,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the hypergeometric distribution."
-msgstr "Values of the hypergeometric distribution."
+msgstr "ዋጋዎች ለ ሀይፐርጂዮሜትሪክ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -16959,7 +16961,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The number of successes in the population."
-msgstr "The number of successes in the population."
+msgstr "የ ስኬቶች ቁጥር በ ሕዝብ ውስጥ"
#: scfuncs.src
msgctxt ""
@@ -17004,7 +17006,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the hypergeometric distribution."
-msgstr "Values of the hypergeometric distribution."
+msgstr "ዋጋዎች ለ ሀይፐርጂዮሜትሪክ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17058,7 +17060,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The number of successes in the population."
-msgstr "The number of successes in the population."
+msgstr "የ ስኬቶች ቁጥር በ ሕዝብ ውስጥ"
#: scfuncs.src
msgctxt ""
@@ -17103,7 +17105,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the t-distribution."
-msgstr "Returns the t-distribution."
+msgstr "የ t-ስርጭት ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -17121,7 +17123,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the T distribution is to be calculated."
-msgstr "The value for which the T distribution is to be calculated."
+msgstr "ዋጋ የ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17130,7 +17132,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17139,7 +17141,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom of the T distribution."
-msgstr "The degrees of freedom of the T distribution."
+msgstr "የ ዲግሪዎች ነፃነት ለ T ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17157,7 +17159,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
-msgstr "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution."
+msgstr "ዘዴ = 1 ያሰላል የ አንድ-ጭራ መሞከሪያ: 2 = ሁለት-ጭራ መሞከሪያ:"
#: scfuncs.src
msgctxt ""
@@ -17184,7 +17186,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the T distribution is to be calculated."
-msgstr "The value for which the T distribution is to be calculated."
+msgstr "ዋጋ የ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17193,7 +17195,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17202,7 +17204,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom of the T distribution."
-msgstr "The degrees of freedom of the T distribution."
+msgstr "የ ዲግሪዎች ነፃነት ለ T ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17211,7 +17213,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the t-distribution."
-msgstr "Returns the t-distribution."
+msgstr "የ t-ስርጭት ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -17229,7 +17231,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the T distribution is to be calculated."
-msgstr "The value for which the T distribution is to be calculated."
+msgstr "ዋጋ የ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17238,7 +17240,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17292,7 +17294,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the T distribution is to be calculated."
-msgstr "The value for which the T distribution is to be calculated."
+msgstr "ዋጋ የ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17301,7 +17303,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17310,7 +17312,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom of the T distribution."
-msgstr "The degrees of freedom of the T distribution."
+msgstr "የ ዲግሪዎች ነፃነት ለ T ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17319,7 +17321,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse t-distribution."
-msgstr "Values of the inverse t-distribution."
+msgstr "ዋጋዎች ለ ግልባጭ t-ስርጭት."
#: scfuncs.src
msgctxt ""
@@ -17337,7 +17339,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "The probability value for which the inverse T distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17346,7 +17348,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17382,7 +17384,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ለ ግልባጭ T ስርጭት የሚሰላው"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17391,7 +17393,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17427,7 +17429,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse T distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ለ ግልባጭ ጭራ ስርጭት የሚሰላው"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ T ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17436,7 +17438,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17454,7 +17456,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the F probability distribution."
-msgstr "Values of the F probability distribution."
+msgstr "ዋጋዎች ለ F ምናልባት ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17472,7 +17474,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the F distribution is to be calculated."
-msgstr "The value for which the F distribution is to be calculated."
+msgstr "ዋጋ የ F ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17481,7 +17483,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17499,7 +17501,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17544,7 +17546,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17553,7 +17555,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "The degrees of freedom in the numerator of the F distribution."
+msgstr "የ ዲግሪዎች ነፃነት በ አካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17562,7 +17564,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17571,7 +17573,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "The degrees of freedom in the denominator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ ተካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17598,7 +17600,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the right tail F probability distribution."
-msgstr "Values of the right tail F probability distribution."
+msgstr "ዋጋዎች ለ ቀኝ ጭራ F ምናልባት ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17616,7 +17618,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the F distribution is to be calculated."
-msgstr "The value for which the F distribution is to be calculated."
+msgstr "ዋጋ የ F ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17625,7 +17627,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17634,7 +17636,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "The degrees of freedom in the numerator of the F distribution."
+msgstr "የ ዲግሪዎች ነፃነት በ አካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17643,7 +17645,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17652,7 +17654,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "The degrees of freedom in the denominator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ ተካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17661,7 +17663,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse F distribution."
-msgstr "Values of the inverse F distribution."
+msgstr "ዋጋዎች ለ ግልባጭ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17679,7 +17681,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "The probability value for which the inverse F distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ ነው የ ግልባጭ F ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17688,7 +17690,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17697,7 +17699,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "The degrees of freedom in the numerator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ አካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17706,7 +17708,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17715,7 +17717,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "The degrees of freedom in the denominator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ ተካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17724,7 +17726,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse left tail F distribution."
-msgstr "Values of the inverse left tail F distribution."
+msgstr "ዋጋዎች ለ ግልባጭ የ ግራ ጭራ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17742,7 +17744,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ለ ግልባጭ F ስርጭት ለሚሰላው"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ F ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17751,7 +17753,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17760,7 +17762,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "The degrees of freedom in the numerator of the F distribution."
+msgstr "የ ዲግሪዎች ነፃነት በ አካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17769,7 +17771,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17778,7 +17780,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "The degrees of freedom in the denominator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ ተካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17787,7 +17789,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse right tail F distribution."
-msgstr "Values of the inverse right tail F distribution."
+msgstr "ዋጋዎች ለ ግልባጭ የ ቀኝ ጭራ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17805,7 +17807,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse F distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ነው ለ ግልባጭ F ስርጭት ለሚሰላው"
+msgstr "የ ምናልባት ዋጋ ነው የ ግልባጭ F ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17814,7 +17816,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom_1"
-msgstr "degrees_freedom_1"
+msgstr "የ ዲግሪዎች_ነፃነት_1"
#: scfuncs.src
msgctxt ""
@@ -17823,7 +17825,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The degrees of freedom in the numerator of the F distribution."
-msgstr "The degrees of freedom in the numerator of the F distribution."
+msgstr "የ ዲግሪዎች ነፃነት በ አካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17832,7 +17834,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "degrees_freedom_2"
-msgstr "degrees_freedom_2"
+msgstr "የ ዲግሪዎች_ነፃነት_2"
#: scfuncs.src
msgctxt ""
@@ -17841,7 +17843,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The degrees of freedom in the denominator of the F distribution."
-msgstr "The degrees of freedom in the denominator of the F distribution."
+msgstr "የ ዲግሪዎችነፃነት በ ተካፋዮች ውስጥ ለ F ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17850,7 +17852,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the right-tail probability of the chi-square distribution."
-msgstr "Returns the right-tail probability of the chi-square distribution."
+msgstr "ይመልሳል የ ቀኝ-ጭራ ምናልባት ለ ቺ-ስኴር ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17868,7 +17870,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the chi square distribution is to be calculated."
-msgstr "The value for which the chi square distribution is to be calculated."
+msgstr "ዋጋ የ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17877,7 +17879,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17895,7 +17897,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the right-tail probability of the chi-square distribution."
-msgstr "Returns the right-tail probability of the chi-square distribution."
+msgstr "ይመልሳል የ ቀኝ-ጭራ ምናልባት ለ ቺ-ስኴር ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17913,7 +17915,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the chi square distribution is to be calculated."
-msgstr "The value for which the chi square distribution is to be calculated."
+msgstr "ዋጋ የ ለ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -17922,7 +17924,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -17940,7 +17942,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
-msgstr "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."
+msgstr "ይመልሳል የ ግራ-ጭራ ምናልባት ለ ተጠራቀመው ስርጭት ተግባር ወይንም ዋጋዎች የ ምናልባት መጠን ተግባር ለ ቺ-ስኴር ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -17958,7 +17960,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value for which the probability density function or cumulative distribution function is to be calculated."
-msgstr "The value for which the probability density function or cumulative distribution function is to be calculated."
+msgstr "ዋጋ ለ ምናልባት መጠን ተግባር ወይንም ለ ተጠራቀመው ስርጭት ተግባር ለሚሰላው"
#: scfuncs.src
msgctxt ""
@@ -17967,7 +17969,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Degrees of Freedom"
-msgstr "Degrees of Freedom"
+msgstr "የ ዲግሪዎች ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18030,7 +18032,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Degrees of Freedom"
-msgstr "Degrees of Freedom"
+msgstr "የ ዲግሪዎች ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18066,7 +18068,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
-msgstr "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
+msgstr "ዋጋዎች ለ ግልባጭ ቺ ስርጭት(x; የ ዲግሪዎች ነፃነት)."
#: scfuncs.src
msgctxt ""
@@ -18084,7 +18086,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse chi square distribution is to be calculated."
-msgstr "The probability value for which the inverse chi square distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -18093,7 +18095,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18111,7 +18113,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
-msgstr "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."
+msgstr "ዋጋዎች ለ ግልባጭ ቺ ስርጭት(x; የ ዲግሪዎች ነፃነት)."
#: scfuncs.src
msgctxt ""
@@ -18129,7 +18131,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse chi square distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ከ ግልባጭ ለ ቺ ስኴር ስርጭት ለሚሰላው"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -18138,7 +18140,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "degrees_freedom"
-msgstr "degrees_freedom"
+msgstr "የ ዲግሪዎች_ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18156,7 +18158,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."
-msgstr "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."
+msgstr "ዋጋዎች ለ ግልባጭ ቺ ስርጭት(x; የ ዲግሪዎች ነፃነት:እውነት())."
#: scfuncs.src
msgctxt ""
@@ -18174,7 +18176,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
-msgstr "The probability value for which the inverse of the chi square distribution is to be calculated."
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -18183,7 +18185,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Degrees of Freedom"
-msgstr "Degrees of Freedom"
+msgstr "የ ዲግሪዎች ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18201,7 +18203,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."
-msgstr "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."
+msgstr "ዋጋዎች ለ ግልባጭ ቺ ስኬር.ስርጭት(x; የ ዲግሪዎች ነፃነት:እውነት())."
#: scfuncs.src
msgctxt ""
@@ -18219,7 +18221,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The probability value for which the inverse of the chi square distribution is to be calculated."
-msgstr "የ ምናልባት ዋጋ ከ ግልባጭ ለ ቺ ስኴር ስርጭት ለሚሰላው"
+msgstr "የ ምናልባት ዋጋ የ ግልባጭ ቺ ስኴር ስርጭት የሚሰላበት"
#: scfuncs.src
msgctxt ""
@@ -18228,7 +18230,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Degrees of Freedom"
-msgstr "Degrees of Freedom"
+msgstr "የ ዲግሪዎች ነፃነት"
#: scfuncs.src
msgctxt ""
@@ -18264,7 +18266,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value to be standardized."
-msgstr "The value to be standardized."
+msgstr "ዋጋ ለ ደረጃው"
#: scfuncs.src
msgctxt ""
@@ -18300,7 +18302,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The standard deviation used for scaling."
-msgstr "The standard deviation used for scaling."
+msgstr "የ መደበኛ ልዩነት ለ መመጠኛ የሚጠቀሙበት"
#: scfuncs.src
msgctxt ""
@@ -18408,7 +18410,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -18417,7 +18419,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The level of the confidence interval."
-msgstr "The level of the confidence interval."
+msgstr "የ መተማመኛ ክፍተት ደረጃ"
#: scfuncs.src
msgctxt ""
@@ -18435,7 +18437,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The standard deviation of the population."
-msgstr "The standard deviation of the population."
+msgstr "መደበኛ ልዩነት ለ ሕዝብ"
#: scfuncs.src
msgctxt ""
@@ -18471,7 +18473,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -18480,7 +18482,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The level of the confidence interval."
-msgstr "The level of the confidence interval."
+msgstr "የ መተማመኛ ክፍተት ደረጃ"
#: scfuncs.src
msgctxt ""
@@ -18498,7 +18500,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The standard deviation of the population."
-msgstr "The standard deviation of the population."
+msgstr "መደበኛ ልዩነት ለ ሕዝብ"
#: scfuncs.src
msgctxt ""
@@ -18534,7 +18536,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "alpha"
-msgstr "alpha"
+msgstr "አልፋ"
#: scfuncs.src
msgctxt ""
@@ -18543,7 +18545,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The level of the confidence interval."
-msgstr "The level of the confidence interval."
+msgstr "የ መተማመኛ ክፍተት ደረጃ"
#: scfuncs.src
msgctxt ""
@@ -18561,7 +18563,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The standard deviation of the population."
-msgstr "The standard deviation of the population."
+msgstr "መደበኛ ልዩነት ለ ሕዝብ"
#: scfuncs.src
msgctxt ""
@@ -18588,7 +18590,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
-msgstr "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."
+msgstr "የሚያሰላው የ ምናልባት ለሚታየው የ z-ስታትስቲክስ የሚበልጠውን የሚሰላውን ናሙና መሰረት ባደረገ ነው"
#: scfuncs.src
msgctxt ""
@@ -18606,7 +18608,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The given sample, drawn from a normally distributed population."
-msgstr "The given sample, drawn from a normally distributed population."
+msgstr "የ ተሰጠው ናሙና ነው: ከ መደበኛ የ ሕዝብ ስርጭት ውስጥ የ ወጣ"
#: scfuncs.src
msgctxt ""
@@ -18642,7 +18644,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgstr "የ ታወቀ መደበኛ ልዩነት ነው ለ ሕዝብ: የማይታይ ከሆነ: የ መደበኛ ልዩነት የ ተሰጠውን ናሙና ይጠቀማል"
#: scfuncs.src
msgctxt ""
@@ -18669,7 +18671,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The given sample, drawn from a normally distributed population."
-msgstr "The given sample, drawn from a normally distributed population."
+msgstr "የ ተሰጠው ናሙና ነው: ከ መደበኛ የ ሕዝብ ስርጭት ውስጥ የ ወጣ"
#: scfuncs.src
msgctxt ""
@@ -18705,7 +18707,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
-msgstr "የ ታወቀ መደበኛ ልዩነት ነው ለ ህዝብ: የማይታይ ከሆነ: የ መደበኛ ልዩነት የ ተሰጠውን ናሙና ይጠቀማል"
+msgstr "የ ታወቀ መደበኛ ልዩነት ነው ለ ሕዝብ: የማይታይ ከሆነ: የ መደበኛ ልዩነት የ ተሰጠውን ናሙና ይጠቀማል"
#: scfuncs.src
msgctxt ""
@@ -18714,7 +18716,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the chi square independence test."
-msgstr "Returns the chi square independence test."
+msgstr "የ ቺ ስኴር ነፃ መሞከሪያ ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -18759,7 +18761,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the chi square independence test."
-msgstr "Returns the chi square independence test."
+msgstr "የ ቺ ስኴር ነፃ መሞከሪያ ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -18948,7 +18950,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgstr "ዘዴ የሚወስነው ቁጥር ለ ስርጭት ጭራ እንዲመልስ 1= አንድ-ጭራ: 2 = ሁለት-ጭራ ስርጭት"
#: scfuncs.src
msgctxt ""
@@ -19101,7 +19103,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the intercept of the linear regression line and the Y axis."
-msgstr "Returns the intercept of the linear regression line and the Y axis."
+msgstr "መገናኛ ለ ቀጥታ ዝቅ ማድረጊያ መስመር እና ለ Y axis. ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -19146,7 +19148,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the slope of the linear regression line."
-msgstr "Returns the slope of the linear regression line."
+msgstr "ስሎፕ ለ ቀጥታ ዝቅ ማድረጊያ መስመር ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -19461,7 +19463,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a value along a linear regression"
-msgstr "Returns a value along a linear regression"
+msgstr "በ ቀጥታ ዝቅ ማድረጊያ አጠገብ ዋጋ ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -20534,7 +20536,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Selects a value from a list of up to 30 value arguments."
-msgstr "Selects a value from a list of up to 30 value arguments."
+msgstr "ይምረጡ ዋጋ ከ ዝርዝር ውስጥ እስከ 30 የ ክርክሮች ዋጋ"
#: scfuncs.src
msgctxt ""
@@ -20975,7 +20977,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "The index of the subrange if referring to a multiple range."
-msgstr "The index of the subrange if referring to a multiple range."
+msgstr "የ ንዑስ መጠን ማውጫ የሚያመሳክር ከሆነ ለ በርካታ መጠን"
#: scfuncs.src
msgctxt ""
@@ -21641,7 +21643,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a numeric code for the first character in a text string."
-msgstr "Returns a numeric code for the first character in a text string."
+msgstr "የ ቁጥር ኮድ ለ መጀመሪያው ባህሪ በ ጽሁፍ ሀረግ ውስጥ ይመልሳል"
#: scfuncs.src
msgctxt ""
@@ -22946,7 +22948,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts a positive integer to text from a number system to the base defined."
-msgstr "Converts a positive integer to text from a number system to the base defined."
+msgstr "አሉታዊ ኢንቲጀር ወደ ጽሁፍ በ ቁጥር ስርአት ውስጥ መቀየሪያ ወደ ተገለጸው መሰረት "
#: scfuncs.src
msgctxt ""
@@ -23009,7 +23011,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts a text of a specified number system to a positive integer in the base given."
-msgstr "Converts a text of a specified number system to a positive integer in the base given."
+msgstr "ጽሁፍ ወደ ተወሰነው ቁጥር ስርአት ውስጥ በ አዎንታዊ ኢንቲጀር ወደ ተገለጸው መሰረት መቀየሪያ"
#: scfuncs.src
msgctxt ""
diff --git a/source/am/scaddins/source/analysis.po b/source/am/scaddins/source/analysis.po
index 31d199dab26..60fd3a3521d 100644
--- a/source/am/scaddins/source/analysis.po
+++ b/source/am/scaddins/source/analysis.po
@@ -4,7 +4,7 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-12-22 23:43+0000\n"
+"PO-Revision-Date: 2017-02-17 21:26+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482450206.000000\n"
+"X-POOTLE-MTIME: 1487366786.000000\n"
#: analysis.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Numerator"
-msgstr "Numerator"
+msgstr "አካፋይ"
#: analysis.src
msgctxt ""
@@ -544,7 +544,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Denominator"
-msgstr "Denominator"
+msgstr "ተካፋይ"
#: analysis.src
msgctxt ""
@@ -562,7 +562,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a number rounded to a specified multiple"
-msgstr "Returns a number rounded to a specified multiple"
+msgstr "የ ተጠጋጋ ቁጥር ይመልሳል ለ ተወሰነ ያለ ቀሪ አካፋይ"
#: analysis.src
msgctxt ""
@@ -777,7 +777,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The order of the Bessel function"
-msgstr "The order of the Bessel function"
+msgstr "የ Bessel ተግባር ቅደም ተከተል"
#: analysis.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The order of the Bessel function"
-msgstr "The order of the Bessel function"
+msgstr "የ Bessel ተግባር ቅደም ተከተል"
#: analysis.src
msgctxt ""
@@ -831,7 +831,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the Bessel function Kn(x)"
-msgstr "Returns the Bessel function Kn(x)"
+msgstr "የ Bessel ተግባር ይመልሳል Kn(x)"
#: analysis.src
msgctxt ""
@@ -867,7 +867,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The order of the Bessel function"
-msgstr "The order of the Bessel function"
+msgstr "የ Bessel ተግባር ቅደም ተከተል"
#: analysis.src
msgctxt ""
@@ -876,7 +876,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the Bessel function Yn(x)"
-msgstr "Returns the Bessel function Yn(x)"
+msgstr "የ Bessel ተግባር ይመልሳል Yn(x)"
#: analysis.src
msgctxt ""
@@ -912,7 +912,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The order of the Bessel function"
-msgstr "The order of the Bessel function"
+msgstr "የ Bessel ተግባር ቅደም ተከተል"
#: analysis.src
msgctxt ""
@@ -1605,7 +1605,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1632,7 +1632,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1641,7 +1641,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1659,7 +1659,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1668,7 +1668,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1695,7 +1695,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the argument theta, an angle expressed in radians"
-msgstr "Returns the argument theta, an angle expressed in radians"
+msgstr "የ ክርክር ቴታ ይመልሳል: ለ ተሰጠው አንግል በ ራዲያንስ"
#: analysis.src
msgctxt ""
@@ -1704,7 +1704,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1713,7 +1713,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1731,7 +1731,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1740,7 +1740,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Numerator"
-msgstr "Numerator"
+msgstr "አካፋይ"
#: analysis.src
msgctxt ""
@@ -1776,7 +1776,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Denominator"
-msgstr "Denominator"
+msgstr "ተካፋይ"
#: analysis.src
msgctxt ""
@@ -1803,7 +1803,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1812,7 +1812,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1839,7 +1839,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1857,7 +1857,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1866,7 +1866,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1884,7 +1884,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1893,7 +1893,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1911,7 +1911,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1920,7 +1920,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1938,7 +1938,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1956,7 +1956,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1983,7 +1983,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -1992,7 +1992,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2010,7 +2010,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2019,7 +2019,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2037,7 +2037,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number 1"
-msgstr "Complex number 1"
+msgstr "ውስብስብ ቁጥር 1"
#: analysis.src
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "Complex number 1"
-msgstr "Complex number 1"
+msgstr "ውስብስብ ቁጥር 1"
#: analysis.src
msgctxt ""
@@ -2055,7 +2055,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Complex number 2"
-msgstr "Complex number 2"
+msgstr "ውስብስብ ቁጥር 2"
#: analysis.src
msgctxt ""
@@ -2064,7 +2064,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Complex number 2"
-msgstr "Complex number 2"
+msgstr "ውስብስብ ቁጥር 2"
#: analysis.src
msgctxt ""
@@ -2082,7 +2082,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2091,7 +2091,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2100,7 +2100,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the sum of complex numbers"
-msgstr "Returns the sum of complex numbers"
+msgstr "የ ውስብስብ ቁጥሮች ድምር ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2109,7 +2109,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The complex number"
-msgstr "The complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2136,7 +2136,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2145,7 +2145,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2154,7 +2154,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the secant of a complex number"
-msgstr "Returns the secant of a complex number"
+msgstr "የ ውስብስብ ቁጥር ሴካንት ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2163,7 +2163,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2172,7 +2172,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2181,7 +2181,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the cosecant of a complex number"
-msgstr "Returns the cosecant of a complex number"
+msgstr "የ ውስብስብ ቁጥር ኮሴካንት ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2199,7 +2199,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2217,7 +2217,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2226,7 +2226,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2244,7 +2244,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2253,7 +2253,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2271,7 +2271,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2280,7 +2280,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2289,7 +2289,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic secant of a complex number"
-msgstr "Returns the hyperbolic secant of a complex number"
+msgstr "የ ውስብስብ ቁጥር ሀይፐርቦሊክ ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2298,7 +2298,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2307,7 +2307,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2316,7 +2316,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the hyperbolic cosecant of a complex number"
-msgstr "Returns the hyperbolic cosecant of a complex number"
+msgstr "የ ውስብስብ ቁጥር ኮሴካንት ይመልሳል"
#: analysis.src
msgctxt ""
@@ -2325,7 +2325,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "Complex number"
-msgstr "Complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A complex number"
-msgstr "A complex number"
+msgstr "ውስብስብ ቁጥር"
#: analysis.src
msgctxt ""
@@ -2370,7 +2370,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "I num"
-msgstr "I num"
+msgstr "I ቁጥር"
#: analysis.src
msgctxt ""
@@ -3360,7 +3360,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Nper"
-msgstr "Nper"
+msgstr "የ ክፍያ ጊዜ ቁጥር"
#: analysis.src
msgctxt ""
@@ -3477,7 +3477,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Nper"
-msgstr "Nper"
+msgstr "የ ክፍያ ጊዜ ቁጥር"
#: analysis.src
msgctxt ""
diff --git a/source/am/scaddins/source/pricing.po b/source/am/scaddins/source/pricing.po
index 9ff89d41ab5..bee6dabcb1a 100644
--- a/source/am/scaddins/source/pricing.po
+++ b/source/am/scaddins/source/pricing.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-12-04 19:44+0000\n"
+"PO-Revision-Date: 2017-02-17 21:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480880661.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487366919.000000\n"
#: pricing.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"22\n"
"string.text"
msgid "greek"
-msgstr "greek"
+msgstr "ግሪክ"
#: pricing.src
msgctxt ""
diff --git a/source/am/sccomp/source/solver.po b/source/am/sccomp/source/solver.po
index 6c87082ab9d..65c4970553e 100644
--- a/source/am/sccomp/source/solver.po
+++ b/source/am/sccomp/source/solver.po
@@ -3,18 +3,18 @@ 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: 2014-05-02 00:14+0200\n"
-"PO-Revision-Date: 2014-05-05 03:46+0000\n"
-"Last-Translator: Samson <sambelet@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-02-17 21:31+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1399261616.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487367112.000000\n"
#: solver.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_PROPERTY_EPSILONLEVEL\n"
"string.text"
msgid "Epsilon level (0-3)"
-msgstr "Epsilon level (0-3)"
+msgstr "የ ኤፕሲሎን ደረጃ (0-3)"
#: solver.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"RID_ERROR_NONLINEAR\n"
"string.text"
msgid "The model is not linear."
-msgstr "The model is not linear."
+msgstr "ዘዴው ቀጥተኛ አይደለም"
#: solver.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"RID_ERROR_EPSILONLEVEL\n"
"string.text"
msgid "The epsilon level is invalid."
-msgstr "The epsilon level is invalid."
+msgstr "የ ኤፕሲሎን ደረጃ ዋጋ የለውም"
#: solver.src
msgctxt ""
@@ -110,4 +110,4 @@ msgctxt ""
"RID_ERROR_TIMEOUT\n"
"string.text"
msgid "The time limit was reached."
-msgstr "The time limit was reached."
+msgstr "የ ሰአቱ መጠን ደርሷል"
diff --git a/source/am/scp2/source/draw.po b/source/am/scp2/source/draw.po
index 7f8ba9c7ce1..d0772ab68ef 100644
--- a/source/am/scp2/source/draw.po
+++ b/source/am/scp2/source/draw.po
@@ -4,7 +4,7 @@ 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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2016-11-14 00:37+0000\n"
+"PO-Revision-Date: 2017-02-17 21:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1479083870.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487367264.000000\n"
#: folderitem_draw.ulf
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_REG_VAL_SO60_DRAW_TEMPLATE\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Drawing Template"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION Drawing Template"
+msgstr "%SXWFORMATNAME %SXWFORMATVERSION የ መሳያ ቴምፕሌት"
#: registryitem_draw.ulf
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_REG_VAL_OO_DRAW\n"
"LngText.text"
msgid "OpenDocument Drawing"
-msgstr "OpenDocument Drawing"
+msgstr "OpenDocument መሳያ"
#: registryitem_draw.ulf
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_REG_VAL_OO_DRAW_TEMPLATE\n"
"LngText.text"
msgid "OpenDocument Drawing Template"
-msgstr "OpenDocument Drawing Template"
+msgstr "OpenDocument የ መሳያ ቴምፕሌት"
#: registryitem_draw.ulf
msgctxt ""
diff --git a/source/am/scp2/source/extensions.po b/source/am/scp2/source/extensions.po
index 46554177888..0cd14de4f5c 100644
--- a/source/am/scp2/source/extensions.po
+++ b/source/am/scp2/source/extensions.po
@@ -4,7 +4,7 @@ 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-10-25 18:58+0000\n"
+"PO-Revision-Date: 2017-02-17 21:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1477421911.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487367380.000000\n"
#: module_extensions.ulf
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_EXTENSIONS_NUMBERTEXT\n"
"LngText.text"
msgid "Provides the NUMBERTEXT/MONEYTEXT spreadsheet functions which convert numbers to localized text, e.g. '100' to 'hundred'."
-msgstr "Provides the NUMBERTEXT/MONEYTEXT spreadsheet functions which convert numbers to localized text, e.g. '100' to 'hundred'."
+msgstr "የሚያቀርበው የ NUMBERTEXT/MONEYTEXT ሰንጠረዥ ተግባር ነው: ቁጥሮችን ወደ ቋንቋው በ ጽሁፍ ለምሳሌ: '100' ወደ 'መቶ'."
#: module_extensions.ulf
msgctxt ""
diff --git a/source/am/svtools/source/java.po b/source/am/svtools/source/java.po
index 7c152ee983a..a0c0d6fa7a4 100644
--- a/source/am/svtools/source/java.po
+++ b/source/am/svtools/source/java.po
@@ -4,7 +4,7 @@ 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-12-08 01:44+0000\n"
+"PO-Revision-Date: 2017-02-17 22:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481161466.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487369016.000000\n"
#: javaerror.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_WARNING_INVALIDJAVASETTINGS_MAC\n"
"string.text"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
-msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የ ረቀቀ, select the Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
+msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የ ረቀቀ ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
#: javaerror.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_WARNING_INVALIDJAVASETTINGS\n"
"string.text"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
-msgstr "The %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ መሳሪያ - ምርጫ - %PRODUCTNAME - የረቀቀ, select the Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
+msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ መሳሪያ - ምርጫ - %PRODUCTNAME - የረቀቀ: ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
#: javaerror.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_ERROR_JVMCREATIONFAILED_MAC\n"
"string.text"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
-msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
+msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የረቀቀ"
#: javaerror.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_ERROR_JVMCREATIONFAILED\n"
"string.text"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
-msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
+msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ መሳሪያዎች - ምርጫዎች - %PRODUCTNAME – የረቀቀ"
#: javaerror.src
msgctxt ""
diff --git a/source/am/svx/source/src.po b/source/am/svx/source/src.po
index 65c6af5d1a5..d83ea50c1cd 100644
--- a/source/am/svx/source/src.po
+++ b/source/am/svx/source/src.po
@@ -4,7 +4,7 @@ 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-12-10 03:12+0000\n"
+"PO-Revision-Date: 2017-02-16 14:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481339534.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487256638.000000\n"
#: errtxt.src
msgctxt ""
@@ -1033,7 +1033,7 @@ msgid ""
msgstr ""
"ይህ ሰነድ macros ይዟል \n"
"\n"
-"Macros ምናልባት ቫይረስ ሊይዝ ይችላል ፡ macros ማስኬድ ተሰናክሏል ለአሁኑ macro ደህንነት ማሰናጃ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - ደህንነት \n"
+"Macros ምናልባት ቫይረስ ሊይዝ ይችላል: macros ማስኬድ ተሰናክሏል ለአሁኑ macro ደህንነት ማሰናጃ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - ደህንነት \n"
"\n"
"ስለዚህ አንዳንድ ተግባሮች ላይኖሩ ይችላሉ"
diff --git a/source/am/swext/mediawiki/help.po b/source/am/swext/mediawiki/help.po
index 6dba7449ac6..b313fa14a3e 100644
--- a/source/am/swext/mediawiki/help.po
+++ b/source/am/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ 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-12-31 19:34+0000\n"
+"PO-Revision-Date: 2017-02-16 14:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483212861.000000\n"
+"X-POOTLE-MTIME: 1487256558.000000\n"
#: help.tree
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr "የ ዊኪ አታሚን ከመጠቀምዎ በፊት ያረጋግጡ %PRODUCTNAME መጠቀሙን የ Java Runtime Environment (JRE). ይህን ሁኔታ ለማረጋገጥ JRE, ይምረጡ <item type=\"menuitem\">መሳሪያዎች - ምርጫ - %PRODUCTNAME - Advanced</item>. ያረጋግጡ \"Use a Java runtime environment\" ምልክት መደረጉን እና የ Java runtime በትልቁ የዝርዝር ሳጥን ውስጥ መመረጡን: ምንም JRE ካልተነሳ JRE 1.4 ያስነሱ ወይንም ዘመናዊውን እና እንደገና ያስነሱ %PRODUCTNAME."
+msgstr "የ ዊኪ አታሚን ከመጠቀምዎ በፊት ያረጋግጡ %PRODUCTNAME መጠቀሙን የ Java Runtime Environment (JRE). ይህን ሁኔታ ለማረጋገጥ JRE, ይምረጡ <item type=\"menuitem\">መሳሪያዎች - ምርጫ - %PRODUCTNAME - Advanced</item> ያረጋግጡ \"Use a Java runtime environment\" ምልክት መደረጉን እና የ Java runtime በትልቁ የ ዝርዝር ሳጥን ውስጥ መመረጡን: ምንም JRE ካልተነሳ JRE 1.4 ያስነሱ ወይንም ዘመናዊውን እና እንደገና ያስነሱ %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 6678c130150..c92d67fc02a 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-23 01:04+0000\n"
+"PO-Revision-Date: 2017-02-16 15:41+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1485133453.000000\n"
+"X-POOTLE-MTIME: 1487259679.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -9524,7 +9524,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Use a Java runtime environment"
-msgstr "_Използване на обкръжение за изпълнение на Java"
+msgstr "Използване на среда за изпълнение на Java"
#: optadvancedpage.ui
msgctxt ""
@@ -9533,7 +9533,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Java runtime environments (JRE) already installed:"
-msgstr "Вече е инсталирано обкръжение за изпълнение на _Java (JRE):"
+msgstr "Инсталирани среди за изпълнение на Java (JRE):"
#: optadvancedpage.ui
msgctxt ""
@@ -9605,7 +9605,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select a Java Runtime Environment"
-msgstr "Избор на обкръжение за изпълнение на Java"
+msgstr "Избор на среда за изпълнение на Java"
#: optadvancedpage.ui
msgctxt ""
diff --git a/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 51130e5dbe0..812364809b2 100644
--- a/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ 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: 2017-01-19 23:51+0000\n"
+"PO-Revision-Date: 2017-02-16 15:42+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484869914.000000\n"
+"X-POOTLE-MTIME: 1487259735.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"OOO_ACTIONTEXT_69\n"
"LngText.text"
msgid "Updating environment strings"
-msgstr "Обновяват се низове на обкръжението"
+msgstr "Обновяват се низове на средата"
#: ActionTe.ulf
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"OOO_ACTIONTEXT_119\n"
"LngText.text"
msgid "Updating environment strings"
-msgstr "Обновяват се низове на обкръжението"
+msgstr "Обновяват се низове на средата"
#: ActionTe.ulf
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"OOO_ERROR_120\n"
"LngText.text"
msgid "Could not update environment variable [2]. Verify that you have sufficient privileges to modify environment variables."
-msgstr "Не бе възможно обновяването на променливата [2] на обкръжението. Уверете се, че имате достатъчно права, за да променяте променливи на обкръжението."
+msgstr "Не бе възможно обновяването на променливата [2] на средата. Уверете се, че имате достатъчно права, за да променяте променливи на средата."
#: Error.ulf
msgctxt ""
diff --git a/source/bg/sc/source/ui/src.po b/source/bg/sc/source/ui/src.po
index 80e3ce26e31..e403cf81cd0 100644
--- a/source/bg/sc/source/ui/src.po
+++ b/source/bg/sc/source/ui/src.po
@@ -4,7 +4,7 @@ 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-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-01-30 22:09+0000\n"
+"PO-Revision-Date: 2017-02-16 15:42+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485814157.000000\n"
+"X-POOTLE-MTIME: 1487259739.000000\n"
#: filter.src
msgctxt ""
@@ -23189,7 +23189,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns information about the environment."
-msgstr "Връща информация за обкръжението."
+msgstr "Връща информация за средата."
#: scfuncs.src
msgctxt ""
diff --git a/source/bg/sc/uiconfig/scalc/ui.po b/source/bg/sc/uiconfig/scalc/ui.po
index 903ac84e38b..736c84e72c5 100644
--- a/source/bg/sc/uiconfig/scalc/ui.po
+++ b/source/bg/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-16 14:32+0000\n"
+"PO-Revision-Date: 2017-02-16 14:44+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: none\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487255540.000000\n"
+"X-POOTLE-MTIME: 1487256249.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -10091,7 +10091,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Category"
-msgstr ""
+msgstr "Категория"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10112,13 +10112,14 @@ msgid "Enter the number of decimal places that you want to display."
msgstr "Въведете броя на дробните разреди, които да се показват."
#: sidebarnumberformat.ui
+#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"decimalplaces-atkobject\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Decimal Places"
-msgstr ""
+msgstr "Дробни позиции"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10172,7 +10173,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Leading Zeroes"
-msgstr ""
+msgstr "Водещи нули"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10361,7 +10362,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Обръщение към клетка"
#: solverdlg.ui
msgctxt ""
@@ -10370,7 +10371,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Обръщение към клетка"
#: solverdlg.ui
msgctxt ""
@@ -10379,7 +10380,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Обръщение към клетка"
#: solverdlg.ui
msgctxt ""
@@ -10388,7 +10389,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Обръщение към клетка"
#: solverdlg.ui
msgctxt ""
@@ -10442,7 +10443,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Операция"
#: solverdlg.ui
msgctxt ""
@@ -10496,7 +10497,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Операция"
#: solverdlg.ui
msgctxt ""
@@ -10550,7 +10551,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Операция"
#: solverdlg.ui
msgctxt ""
@@ -10604,7 +10605,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Операция"
#: solverdlg.ui
msgctxt ""
@@ -10613,7 +10614,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#: solverdlg.ui
msgctxt ""
@@ -10622,7 +10623,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#: solverdlg.ui
msgctxt ""
@@ -10631,7 +10632,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#: solverdlg.ui
msgctxt ""
@@ -10640,7 +10641,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Стойност"
#: solverdlg.ui
msgctxt ""
@@ -10901,7 +10902,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Include comments-only boundary column(s)"
-msgstr ""
+msgstr "Включване на крайните колони само с коментари"
#: sortoptionspage.ui
msgctxt ""
@@ -10919,7 +10920,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Копиране на резултатите в:"
#: sortoptionspage.ui
msgctxt ""
@@ -10928,7 +10929,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Копиране на резултатите в:"
#: sortoptionspage.ui
msgctxt ""
@@ -10946,7 +10947,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Custom sort order"
-msgstr ""
+msgstr "Потребителско сортиране"
#: sortoptionspage.ui
msgctxt ""
@@ -11081,7 +11082,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 1"
-msgstr ""
+msgstr "Операция 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11108,7 +11109,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 2"
-msgstr ""
+msgstr "Операция 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11135,7 +11136,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 3"
-msgstr ""
+msgstr "Операция 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11162,7 +11163,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 4"
-msgstr ""
+msgstr "Операция 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11207,7 +11208,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 1"
-msgstr ""
+msgstr "Име на поле 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11216,7 +11217,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 2"
-msgstr ""
+msgstr "Име на поле 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11225,7 +11226,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 3"
-msgstr ""
+msgstr "Име на поле 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11234,7 +11235,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 4"
-msgstr ""
+msgstr "Име на поле 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11333,7 +11334,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 1"
-msgstr ""
+msgstr "Условие 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11432,7 +11433,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 2"
-msgstr ""
+msgstr "Условие 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11531,7 +11532,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 3"
-msgstr ""
+msgstr "Условие 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11630,7 +11631,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 4"
-msgstr ""
+msgstr "Условие 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11639,7 +11640,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 1"
-msgstr ""
+msgstr "Стойност 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11648,7 +11649,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 2"
-msgstr ""
+msgstr "Стойност 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11657,7 +11658,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 3"
-msgstr ""
+msgstr "Стойност 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11666,7 +11667,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 4"
-msgstr ""
+msgstr "Стойност 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11738,7 +11739,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Копиране на резултата в"
#: standardfilterdialog.ui
msgctxt ""
@@ -11747,7 +11748,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Копиране на резултата в"
#: standardfilterdialog.ui
msgctxt ""
@@ -13034,7 +13035,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse to set source file."
-msgstr ""
+msgstr "Намерете и задайте файл източник."
#: xmlsourcedialog.ui
msgctxt ""
diff --git a/source/bg/svx/source/dialog.po b/source/bg/svx/source/dialog.po
index 9468fbc8a99..687017480d0 100644
--- a/source/bg/svx/source/dialog.po
+++ b/source/bg/svx/source/dialog.po
@@ -4,7 +4,7 @@ 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-08-08 18:15+0000\n"
+"PO-Revision-Date: 2017-02-16 15:13+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1470680154.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487257986.000000\n"
#: SafeMode.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_SAFEMODE_ZIP_FAILURE\n"
"string.text"
msgid "The zip file could not be created."
-msgstr ""
+msgstr "Създаването на ZIP файла бе невъзможно."
#: bmpmask.src
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: page.src
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"A5\n"
"itemlist.text"
msgid "A5"
-msgstr ""
+msgstr "A5"
#: page.src
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"A4\n"
"itemlist.text"
msgid "A4"
-msgstr ""
+msgstr "A4"
#: page.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"A3\n"
"itemlist.text"
msgid "A3"
-msgstr ""
+msgstr "A3"
#: page.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"B6 (ISO)\n"
"itemlist.text"
msgid "B6 (ISO)"
-msgstr ""
+msgstr "B6 (ISO)"
#: page.src
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"B5 (ISO)\n"
"itemlist.text"
msgid "B5 (ISO)"
-msgstr ""
+msgstr "B5 (ISO)"
#: page.src
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"B4 (ISO)\n"
"itemlist.text"
msgid "B4 (ISO)"
-msgstr ""
+msgstr "B4 (ISO)"
#: page.src
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr ""
+msgstr "Letter"
#: page.src
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"Legal\n"
"itemlist.text"
msgid "Legal"
-msgstr ""
+msgstr "Legal"
#: page.src
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"Long Bond\n"
"itemlist.text"
msgid "Long Bond"
-msgstr ""
+msgstr "Long Bond"
#: page.src
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"Tabloid\n"
"itemlist.text"
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloid"
#: page.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"B6 (JIS)\n"
"itemlist.text"
msgid "B6 (JIS)"
-msgstr ""
+msgstr "B6 (JIS)"
#: page.src
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"B5 (JIS)\n"
"itemlist.text"
msgid "B5 (JIS)"
-msgstr ""
+msgstr "B5 (JIS)"
#: page.src
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"B4 (JIS)\n"
"itemlist.text"
msgid "B4 (JIS)"
-msgstr ""
+msgstr "B4 (JIS)"
#: page.src
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"16 Kai\n"
"itemlist.text"
msgid "16 Kai"
-msgstr ""
+msgstr "16 kai"
#: page.src
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"32 Kai\n"
"itemlist.text"
msgid "32 Kai"
-msgstr ""
+msgstr "32 kai"
#: page.src
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"Big 32 Kai\n"
"itemlist.text"
msgid "Big 32 Kai"
-msgstr ""
+msgstr "32 kai (голям)"
#: page.src
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"User\n"
"itemlist.text"
msgid "User"
-msgstr ""
+msgstr "По избор"
#: page.src
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"DL Envelope\n"
"itemlist.text"
msgid "DL Envelope"
-msgstr ""
+msgstr "Плик DL"
#: page.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"C6 Envelope\n"
"itemlist.text"
msgid "C6 Envelope"
-msgstr ""
+msgstr "Плик C6"
#: page.src
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"C6/5 Envelope\n"
"itemlist.text"
msgid "C6/5 Envelope"
-msgstr ""
+msgstr "Плик C6/5"
#: page.src
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"C5 Envelope\n"
"itemlist.text"
msgid "C5 Envelope"
-msgstr ""
+msgstr "Плик C5"
#: page.src
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"C4 Envelope\n"
"itemlist.text"
msgid "C4 Envelope"
-msgstr ""
+msgstr "Плик C4"
#: page.src
msgctxt ""
@@ -626,7 +626,7 @@ msgctxt ""
"#6¾ Envelope\n"
"itemlist.text"
msgid "#6¾ Envelope"
-msgstr ""
+msgstr "Плик #6¾"
#: page.src
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"#7¾ (Monarch) Envelope\n"
"itemlist.text"
msgid "#7¾ (Monarch) Envelope"
-msgstr ""
+msgstr "Плик #7¾ (Monarch)"
#: page.src
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"#9 Envelope\n"
"itemlist.text"
msgid "#9 Envelope"
-msgstr ""
+msgstr "Плик #9"
#: page.src
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"#10 Envelope\n"
"itemlist.text"
msgid "#10 Envelope"
-msgstr ""
+msgstr "Плик #10"
#: page.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"#11 Envelope\n"
"itemlist.text"
msgid "#11 Envelope"
-msgstr ""
+msgstr "Плик #11"
#: page.src
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"#12 Envelope\n"
"itemlist.text"
msgid "#12 Envelope"
-msgstr ""
+msgstr "Плик #12"
#: page.src
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"Japanese Postcard\n"
"itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Японска пощенска картичка"
#: page.src
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: page.src
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"A5\n"
"itemlist.text"
msgid "A5"
-msgstr ""
+msgstr "A5"
#: page.src
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"A4\n"
"itemlist.text"
msgid "A4"
-msgstr ""
+msgstr "A4"
#: page.src
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"A3\n"
"itemlist.text"
msgid "A3"
-msgstr ""
+msgstr "A3"
#: page.src
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"A2\n"
"itemlist.text"
msgid "A2"
-msgstr ""
+msgstr "A2"
#: page.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"A1\n"
"itemlist.text"
msgid "A1"
-msgstr ""
+msgstr "A1"
#: page.src
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"A0\n"
"itemlist.text"
msgid "A0"
-msgstr ""
+msgstr "A0"
#: page.src
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"B6 (ISO)\n"
"itemlist.text"
msgid "B6 (ISO)"
-msgstr ""
+msgstr "B6 (ISO)"
#: page.src
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"B5 (ISO)\n"
"itemlist.text"
msgid "B5 (ISO)"
-msgstr ""
+msgstr "B5 (ISO)"
#: page.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"B4 (ISO)\n"
"itemlist.text"
msgid "B4 (ISO)"
-msgstr ""
+msgstr "B4 (ISO)"
#: page.src
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr ""
+msgstr "Letter"
#: page.src
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"Legal\n"
"itemlist.text"
msgid "Legal"
-msgstr ""
+msgstr "Legal"
#: page.src
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"Long Bond\n"
"itemlist.text"
msgid "Long Bond"
-msgstr ""
+msgstr "Long Bond"
#: page.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"Tabloid\n"
"itemlist.text"
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloid"
#: page.src
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"B6 (JIS)\n"
"itemlist.text"
msgid "B6 (JIS)"
-msgstr ""
+msgstr "B6 (JIS)"
#: page.src
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"B5 (JIS)\n"
"itemlist.text"
msgid "B5 (JIS)"
-msgstr ""
+msgstr "B5 (JIS)"
#: page.src
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"B4 (JIS)\n"
"itemlist.text"
msgid "B4 (JIS)"
-msgstr ""
+msgstr "B4 (JIS)"
#: page.src
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"16 Kai\n"
"itemlist.text"
msgid "16 Kai"
-msgstr ""
+msgstr "16 kai"
#: page.src
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"32 Kai\n"
"itemlist.text"
msgid "32 Kai"
-msgstr ""
+msgstr "32 kai"
#: page.src
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"Big 32 Kai\n"
"itemlist.text"
msgid "Big 32 Kai"
-msgstr ""
+msgstr "32 kai (голям)"
#: page.src
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"User\n"
"itemlist.text"
msgid "User"
-msgstr ""
+msgstr "По избор"
#: page.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"DL Envelope\n"
"itemlist.text"
msgid "DL Envelope"
-msgstr ""
+msgstr "Плик DL"
#: page.src
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"C6 Envelope\n"
"itemlist.text"
msgid "C6 Envelope"
-msgstr ""
+msgstr "Плик C6"
#: page.src
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"C6/5 Envelope\n"
"itemlist.text"
msgid "C6/5 Envelope"
-msgstr ""
+msgstr "Плик C6/5"
#: page.src
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"C5 Envelope\n"
"itemlist.text"
msgid "C5 Envelope"
-msgstr ""
+msgstr "Плик C5"
#: page.src
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"C4 Envelope\n"
"itemlist.text"
msgid "C4 Envelope"
-msgstr ""
+msgstr "Плик C4"
#: page.src
msgctxt ""
@@ -923,7 +923,7 @@ msgctxt ""
"Dia Slide\n"
"itemlist.text"
msgid "Dia Slide"
-msgstr ""
+msgstr "Диапозитив"
#: page.src
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"Screen 4:3\n"
"itemlist.text"
msgid "Screen 4:3"
-msgstr ""
+msgstr "Екран 4:3"
#: page.src
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"Screen 16:9\n"
"itemlist.text"
msgid "Screen 16:9"
-msgstr ""
+msgstr "Екран 16:9"
#: page.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"Screen 16:10\n"
"itemlist.text"
msgid "Screen 16:10"
-msgstr ""
+msgstr "Екран 16:10"
#: page.src
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"Japanese Postcard\n"
"itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Японска пощенска картичка"
#: pagenumbering.src
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"1, 2, 3, ...\n"
"itemlist.text"
msgid "1, 2, 3, ..."
-msgstr ""
+msgstr "1, 2, 3, ..."
#: pagenumbering.src
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"A, B, C, ...\n"
"itemlist.text"
msgid "A, B, C, ..."
-msgstr ""
+msgstr "A, B, C, ..."
#: pagenumbering.src
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"a, b, c, ...\n"
"itemlist.text"
msgid "a, b, c, ..."
-msgstr ""
+msgstr "a, b, c, ..."
#: pagenumbering.src
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"I, II, III, ...\n"
"itemlist.text"
msgid "I, II, III, ..."
-msgstr ""
+msgstr "I, II, III, ..."
#: pagenumbering.src
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"i, ii, iii, ...\n"
"itemlist.text"
msgid "i, ii, iii, ..."
-msgstr ""
+msgstr "i, ii, iii, ..."
#: pagenumbering.src
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: pagenumbering.src
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"A, .., AA, .., AAA, ...\n"
"itemlist.text"
msgid "A, .., AA, .., AAA, ..."
-msgstr ""
+msgstr "A, .., AA, .., AAA, ..."
#: pagenumbering.src
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"a, .., aa, .., aaa, ...\n"
"itemlist.text"
msgid "a, .., aa, .., aaa, ..."
-msgstr ""
+msgstr "a, .., aa, .., aaa, ..."
#: pagenumbering.src
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (български)"
#: pagenumbering.src
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (български)"
#: pagenumbering.src
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (български)"
#: pagenumbering.src
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (български)"
#: pagenumbering.src
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (руски)"
#: pagenumbering.src
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (руски)"
#: pagenumbering.src
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (руски)"
#: pagenumbering.src
msgctxt ""
@@ -1112,7 +1112,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (руски)"
#: pagenumbering.src
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (сръбски)"
#: pagenumbering.src
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (сръбски)"
#: pagenumbering.src
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (сръбски)"
#: pagenumbering.src
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (сръбски)"
#: pagenumbering.src
msgctxt ""
@@ -1157,7 +1157,7 @@ msgctxt ""
"Α, Β, Γ, ... (Greek Upper Letter)\n"
"itemlist.text"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
-msgstr ""
+msgstr "Α, Β, Γ, ... (гръцки главни букви)"
#: pagenumbering.src
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"α, β, γ, ... (Greek Lower Letter)\n"
"itemlist.text"
msgid "α, β, γ, ... (Greek Lower Letter)"
-msgstr ""
+msgstr "α, β, γ, ... (гръцки малки букви)"
#: passwd.src
msgctxt ""
@@ -3576,7 +3576,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERY_INPROGRESS\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION започна да възстановява вашите документи. В зависимост от размера им процесът може да отнеме известно време."
#: sdstring.src
msgctxt ""
@@ -3584,7 +3584,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERYONLY_FINISH_DESCR\n"
"string.text"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
-msgstr ""
+msgstr "Възстановяването на документите завърши. Натиснете „Готово“, за да ги видите."
#: sdstring.src
msgctxt ""
@@ -3617,7 +3617,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: spacing.src
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_C\n"
"string.text"
msgid "Cyrillic Extended-C"
-msgstr ""
+msgstr "Разширена кирилица-C"
#: ucsubset.src
msgctxt ""
@@ -7427,7 +7427,7 @@ msgctxt ""
"RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT\n"
"string.text"
msgid "Glagolitic Supplement"
-msgstr ""
+msgstr "Глаголица – допълнение"
#: ucsubset.src
msgctxt ""
@@ -7481,7 +7481,7 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT\n"
"string.text"
msgid "Tangut"
-msgstr ""
+msgstr "Тангутски"
#: ucsubset.src
msgctxt ""
@@ -7490,4 +7490,4 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT_COMPONENTS\n"
"string.text"
msgid "Tangut Components"
-msgstr ""
+msgstr "Тангутски компоненти"
diff --git a/source/bg/svx/source/form.po b/source/bg/svx/source/form.po
index 86820af3756..56e195452f1 100644
--- a/source/bg/svx/source/form.po
+++ b/source/bg/svx/source/form.po
@@ -4,7 +4,7 @@ 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-30 10:32+0000\n"
+"PO-Revision-Date: 2017-02-16 20:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1459333959.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487277780.000000\n"
#: datanavi.src
msgctxt ""
@@ -811,7 +811,7 @@ msgctxt ""
"Table\n"
"itemlist.text"
msgid "Table"
-msgstr ""
+msgstr "Таблица"
#: fmstring.src
msgctxt ""
@@ -820,7 +820,7 @@ msgctxt ""
"Query\n"
"itemlist.text"
msgid "Query"
-msgstr ""
+msgstr "Заявка"
#: fmstring.src
msgctxt ""
@@ -829,7 +829,7 @@ msgctxt ""
"SQL\n"
"itemlist.text"
msgid "SQL"
-msgstr ""
+msgstr "SQL"
#: fmstring.src
msgctxt ""
@@ -1282,7 +1282,7 @@ msgctxt ""
"LIKE\n"
"itemlist.text"
msgid "LIKE"
-msgstr ""
+msgstr "LIKE"
#: fmstring.src
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"NOT\n"
"itemlist.text"
msgid "NOT"
-msgstr ""
+msgstr "NOT"
#: fmstring.src
msgctxt ""
@@ -1300,7 +1300,7 @@ msgctxt ""
"EMPTY\n"
"itemlist.text"
msgid "EMPTY"
-msgstr ""
+msgstr "EMPTY"
#: fmstring.src
msgctxt ""
@@ -1309,7 +1309,7 @@ msgctxt ""
"TRUE\n"
"itemlist.text"
msgid "TRUE"
-msgstr ""
+msgstr "TRUE"
#: fmstring.src
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"FALSE\n"
"itemlist.text"
msgid "FALSE"
-msgstr ""
+msgstr "FALSE"
#: fmstring.src
msgctxt ""
@@ -1327,7 +1327,7 @@ msgctxt ""
"IS\n"
"itemlist.text"
msgid "IS"
-msgstr ""
+msgstr "IS"
#: fmstring.src
msgctxt ""
@@ -1336,7 +1336,7 @@ msgctxt ""
"BETWEEN\n"
"itemlist.text"
msgid "BETWEEN"
-msgstr ""
+msgstr "BETWEEN"
#: fmstring.src
msgctxt ""
@@ -1345,7 +1345,7 @@ msgctxt ""
"OR\n"
"itemlist.text"
msgid "OR"
-msgstr ""
+msgstr "OR"
#: fmstring.src
msgctxt ""
@@ -1354,7 +1354,7 @@ msgctxt ""
"AND\n"
"itemlist.text"
msgid "AND"
-msgstr ""
+msgstr "AND"
#: fmstring.src
msgctxt ""
@@ -1363,7 +1363,7 @@ msgctxt ""
"Average\n"
"itemlist.text"
msgid "Average"
-msgstr ""
+msgstr "Средно"
#: fmstring.src
msgctxt ""
@@ -1372,7 +1372,7 @@ msgctxt ""
"Count\n"
"itemlist.text"
msgid "Count"
-msgstr ""
+msgstr "Брой"
#: fmstring.src
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"Maximum\n"
"itemlist.text"
msgid "Maximum"
-msgstr ""
+msgstr "Максимум"
#: fmstring.src
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"Minimum\n"
"itemlist.text"
msgid "Minimum"
-msgstr ""
+msgstr "Минимум"
#: fmstring.src
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"Sum\n"
"itemlist.text"
msgid "Sum"
-msgstr ""
+msgstr "Сума"
#: fmstring.src
msgctxt ""
@@ -1408,7 +1408,7 @@ msgctxt ""
"Every\n"
"itemlist.text"
msgid "Every"
-msgstr ""
+msgstr "Всеки"
#: fmstring.src
msgctxt ""
@@ -1417,7 +1417,7 @@ msgctxt ""
"Any\n"
"itemlist.text"
msgid "Any"
-msgstr ""
+msgstr "Който и да е"
#: fmstring.src
msgctxt ""
@@ -1426,7 +1426,7 @@ msgctxt ""
"Some\n"
"itemlist.text"
msgid "Some"
-msgstr ""
+msgstr "Някои"
#: fmstring.src
msgctxt ""
@@ -1435,7 +1435,7 @@ msgctxt ""
"STDDEV_POP\n"
"itemlist.text"
msgid "STDDEV_POP"
-msgstr ""
+msgstr "STDDEV_POP"
#: fmstring.src
msgctxt ""
@@ -1444,7 +1444,7 @@ msgctxt ""
"STDDEV_SAMP\n"
"itemlist.text"
msgid "STDDEV_SAMP"
-msgstr ""
+msgstr "STDDEV_SAMP"
#: fmstring.src
msgctxt ""
@@ -1453,7 +1453,7 @@ msgctxt ""
"VAR_SAMP\n"
"itemlist.text"
msgid "VAR_SAMP"
-msgstr ""
+msgstr "VAR_SAMP"
#: fmstring.src
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"VAR_POP\n"
"itemlist.text"
msgid "VAR_POP"
-msgstr ""
+msgstr "VAR_POP"
#: fmstring.src
msgctxt ""
diff --git a/source/bg/svx/source/src.po b/source/bg/svx/source/src.po
index 3f825f04ae2..706d02a904f 100644
--- a/source/bg/svx/source/src.po
+++ b/source/bg/svx/source/src.po
@@ -4,8 +4,8 @@ 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: 2015-12-11 14:55+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-16 15:13+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845714.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487258004.000000\n"
#: errtxt.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"ERRCODE_CLASS_READ\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Грешка при четене"
#: errtxt.src
msgctxt ""
diff --git a/source/bg/svx/source/stbctrls.po b/source/bg/svx/source/stbctrls.po
index 501e09af75d..97b3776864f 100644
--- a/source/bg/svx/source/stbctrls.po
+++ b/source/bg/svx/source/stbctrls.po
@@ -4,7 +4,7 @@ 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: 2017-01-23 01:01+0000\n"
+"PO-Revision-Date: 2017-02-16 15:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485133295.000000\n"
+"X-POOTLE-MTIME: 1487258083.000000\n"
#: stbctrls.src
msgctxt ""
@@ -251,7 +251,7 @@ msgctxt ""
"RID_SIDEBAR_EMPTY_PANEL_TEXT\n"
"string.text"
msgid "Properties for the task that you are performing are not available for the current selection"
-msgstr ""
+msgstr "Не са налични свойства за текущата селекция и изпълняваната от вас задача."
#: stbctrls.src
msgctxt ""
diff --git a/source/bg/svx/source/tbxctrls.po b/source/bg/svx/source/tbxctrls.po
index 6a5112d12a0..ba3b32f287f 100644
--- a/source/bg/svx/source/tbxctrls.po
+++ b/source/bg/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ 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-12-02 13:08+0000\n"
+"PO-Revision-Date: 2017-02-16 15:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480684111.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487258049.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Без запълване"
#: tbcontrl.src
msgctxt ""
@@ -577,7 +577,7 @@ msgctxt ""
"RID_SVX_PRESET_RENAME\n"
"menuitem.text"
msgid "Rename"
-msgstr ""
+msgstr "Преименуване"
#: tbcontrl.src
msgctxt ""
@@ -586,7 +586,7 @@ msgctxt ""
"RID_SVX_PRESET_DELETE\n"
"menuitem.text"
msgid "Delete"
-msgstr ""
+msgstr "Изтриване"
#: tbcontrl.src
msgctxt ""
@@ -618,7 +618,7 @@ msgctxt ""
"RID_SVXSTR_BY_AUTHOR\n"
"string.text"
msgid "By author"
-msgstr ""
+msgstr "По автор"
#: tbcontrl.src
msgctxt ""
@@ -682,7 +682,7 @@ msgctxt ""
"RID_SVXSTR_CUSTOM_PAL\n"
"string.text"
msgid "custom"
-msgstr ""
+msgstr "по избор"
#: tbcontrl.src
msgctxt ""
diff --git a/source/bg/swext/mediawiki/help.po b/source/bg/swext/mediawiki/help.po
index d0960f2ebe6..d3ac96b3d3b 100644
--- a/source/bg/swext/mediawiki/help.po
+++ b/source/bg/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ 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: 2015-06-20 13:18+0000\n"
+"PO-Revision-Date: 2017-02-16 20:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1434806292.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487277405.000000\n"
#: help.tree
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id9647511\n"
"help.text"
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Чрез Wiki Publisher можете да качите текущия текстов документ на Writer в сървър на MediaWiki. Каченият документ ще може да бъде четен от всички потребители на уикито.</ahelp>"
#: wiki.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id6468703\n"
"help.text"
msgid "<ahelp hid=\".\">Choose <item type=\"menuitem\">File - Send - To MediaWiki</item> to upload the current Writer document to a MediaWiki server.</ahelp>"
-msgstr "<ahelp hid=\".\">Изберете <item type=\"menuitem\">Файл - Изпращане - Към MediaWiki</item>, за да качите текущия документ на Writer на сървъра на MediaWiki.</ahelp>"
+msgstr "<ahelp hid=\".\">Изберете <item type=\"menuitem\">Файл - Изпращане - Към MediaWiki</item>, за да качите текущия документ на Writer в сървър на MediaWiki.</ahelp>"
#: wiki.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"hd_id4554582\n"
"help.text"
msgid "System Requirements"
-msgstr "Системни изисквания:"
+msgstr "Системни изисквания"
#: wiki.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id7387615\n"
"help.text"
msgid "A wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
-msgstr ""
+msgstr "Потребителски профил в поддържан <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> сървър"
#: wiki.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Преди да използвате Wiki Publisher, уверете се, че в %PRODUCTNAME е зададена среда за изпълнение на Java (JRE). За да проверите състоянието на JRE, изберете <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME - Разширени</item>. Уверете се, че полето „Използване на среда за изпълнение на Java“ е отметнато и в голямото списъчно поле е избрана версия на JRE. Ако не е зададена JRE, активирайте JRE 1.4 или по-нова и рестартирайте %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"hd_id5316019\n"
"help.text"
msgid "To Connect to a Wiki"
-msgstr "Свързване с Wiki"
+msgstr "Свързване с уики"
#: wiki.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id368968\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Options</link> dialog, click Add."
-msgstr "В диалоговия прозорец <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Настройки</link> натиснете Добавяне."
+msgstr "В диалогa <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Настройки</link> натиснете „Добавяне“."
#: wiki.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id6962187\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog, enter the account information for the wiki."
-msgstr ""
+msgstr "В диалога <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> въведете информацията за влизане в уикито."
#: wiki.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the URL text box, enter the address of a wiki that you want to connect to."
-msgstr ""
+msgstr "В текстовото поле URL въведете адреса на уикито, с което желаете да се свържете."
#: wiki.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "You can copy the URL from a web browser and paste it into the textbox."
-msgstr "Можете да копирате URL от браузър и да го поставите в текстовото поле."
+msgstr "Можете да копирате адреса от браузър и да го поставите в текстовото поле."
#: wiki.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the Username box, enter your user ID for your wiki account."
-msgstr ""
+msgstr "В полето „Име на потребител“ въведете потребителското си име в уикито."
#: wiki.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id9297158\n"
"help.text"
msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty."
-msgstr ""
+msgstr "Ако уикито позволява анонимен достъп за писане, може да оставите полетата за име и парола празни."
#: wiki.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id8869594\n"
"help.text"
msgid "In the Password box, enter the password for your wiki account, then click OK."
-msgstr ""
+msgstr "Въведете паролата си за уикито в полето „Парола“ и натиснете OK."
#: wiki.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id292062\n"
"help.text"
msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item> to enable the master password. “Save password” is unavailable when the master password is not enabled."
-msgstr ""
+msgstr "Ако отметнете „Записване на паролата“, паролата ще се запомня между сесиите. Достъпът до записаните пароли е защитен с главна парола. Изберете <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME - Сигурност</item>, за да разрешите главната парола. „Записване на паролата“ е недостъпно, ако главната парола не е разрешена."
#: wiki.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"hd_id7044892\n"
"help.text"
msgid "To Create a New Wiki Page"
-msgstr "За да създадете нова страница на Wiki"
+msgstr "За да създадете нова уикистраница"
#: wiki.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id944853\n"
"help.text"
msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">list of supported formats</link>."
-msgstr ""
+msgstr "Въведете съдържанието на уикистраницата. Можете да използвате текстови формати, заглавия, бележки под линия и други. Вижте <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">списъка на поддържаните формати</link> (на английски език)."
#: wiki.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id2564165\n"
"help.text"
msgid "<emph>MediaWiki server</emph>: Select the wiki."
-msgstr ""
+msgstr "<emph>MediaWiki сървър</emph>: изберете уикито."
#: wiki.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id5566576\n"
"help.text"
msgid "<emph>Title</emph>: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki."
-msgstr ""
+msgstr "<emph>Заглавие</emph>: въведете заглавието на страницата. Ако има страница с това заглавие, тя ще бъде заменена с вашия документ. В противен случай ще бъде създадена нова страница в уикито."
#: wiki.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id452284\n"
"help.text"
msgid "<emph>Show in web browser</emph>: Check this box to open your system web browser and show the uploaded wiki page."
-msgstr ""
+msgstr "<emph>Показване в браузъра</emph>: отметнете, за да видите качената уикистраница в уеббраузъра на системата."
#: wiki.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id8346812\n"
"help.text"
msgid "Click <emph>Send</emph>."
-msgstr ""
+msgstr "Щракнете върху <emph>Изпращане</emph>."
#: wikiaccount.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id656758\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable to store your password between sessions. The master password must be enabled; see <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Разрешава съхраняването на паролата ви между сесиите. Трябва да е разрешена главната парола – вижте <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME - Сигурност</item>.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "Въведете адреса на уикисървъра в Интернет във формат от вида „http://wiki.documentfoundation.org“ или го копирайте от браузър."
#: wikiaccount.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr ""
+msgstr "Ако уикито разрешава анонимен достъп, можете да оставите съответните текстови полета празни. В противен случай въведете името и паролата си."
#: wikiaccount.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id9046601\n"
"help.text"
msgid "If you have enabled the master password feature on the Security tab page of the <item type=\"menuitem\">Tools - Options - %PRODUCTNAME</item> dialog, then the software can store your password and automatically insert the data where necessary. Enable the \"Save password\" checkbox to store your password."
-msgstr "Ако сте разрешили защитата с главна парола в раздела Сигурност на диалоговия прозорец <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME</item>, програмата може да запомни паролата ви и да я въвежда автоматично при необходимост. За тази цел отметнете „Записване на паролата“."
+msgstr "Ако сте разрешили защитата с главна парола в раздела „Сигурност“ на диалоговия прозорец <item type=\"menuitem\">Инструменти - Настройки - %PRODUCTNAME</item>, програмата може да запомни паролата ви и да я въвежда автоматично при необходимост. За тази цел отметнете „Записване на паролата“."
#: wikiformats.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id8654133\n"
"help.text"
msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server."
-msgstr ""
+msgstr "Следва общ преглед на текстовите формати, които Wiki Publisher може да изпраща към уикисървъра."
#: wikiformats.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id5630664\n"
"help.text"
msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other."
-msgstr ""
+msgstr "Форматът OpenDocument, използван от Writer, и форматът на MediaWiki са много различни. Само част от свойствата могат да се преобразуват от единия формат в другия."
#: wikiformats.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr ""
+msgstr "Отбележете заглавията в документа на Writer с абзацни стилове за заглавия. В уикито заглавията ще се покажат със същите нива, но форматирани от неговата система."
#: wikiformats.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr ""
+msgstr "В уикито хипервръзките от OpenDocument се превръщат във „външни“ връзки. Затова вградените функции за връзки в OpenDocument трябва да се използват само за връзките към места извън уикито. За създаване на уикивръзки към други обекти в същия уикидомейн, използвайте връзки във формата на уики."
#: wikiformats.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr ""
+msgstr "Списъците се експортират правилно, когато са оформени изцяло с един и същ стил за списък. За да създадете списък в Writer, използвайте иконата „Номера“ или „Водачи“. Ако се нуждаете от списък без номера и водещи знаци, изберете <emph>Формат - Водачи и номерация</emph>, за да дефинирате и приложите съответен стил за списък."
#: wikiformats.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id376598\n"
"help.text"
msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text."
-msgstr ""
+msgstr "В уикистатии не би трябвало да се задава изрично подравняване на текста. Независимо от това се поддържа ляво, центрирано и дясно подравняване."
#: wikiformats.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr ""
+msgstr "Абзацен стил с равноширок шрифт ще се преобразува в предварително форматиран текст. В уикито той ще бъде ограден с рамка."
#: wikiformats.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"hd_id4834131\n"
"help.text"
msgid "Character styles"
-msgstr "Знакови стилове "
+msgstr "Знакови стилове"
#: wikiformats.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "Знаковите стилове променят облика на части от абзаца. Преобразуването поддържа получер и/или курсивен текст, както и горни и долни индекси. Всички равношироки шрифтове се преобразуват в стила „typewriter“ на уикито."
#: wikiformats.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "Бележка: преобразуването използва новия тип бележки под линия с етикети <ref> и <references>, който изисква разширението Cite.php да е инсталирано в MediaWiki. Ако тези етикети се виждат като обикновен текст в резултата, помолете администратора на уикито да инсталира това разширение."
#: wikiformats.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "Резултатът от преобразуването е един единствен файл с уикитекст, затова не могат да се експортират изображения. Ако обаче изображението вече е качено в съответния уикидомейн (например WikiMedia Commons), преобразуването ще създаде валиден етикет image, който го включва. Поддържат се и надписи към изображенията."
#: wikiformats.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "Простите таблици се поддържат добре. Заглавните части на таблици се експортират към съответните антетки на таблици в уики. Ръчно зададените кантове, ширини на колони и фонови цветове се пренебрегват."
#: wikiformats.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id8253730\n"
"help.text"
msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells."
-msgstr "В OpenDocument и в частност в LibreOffice таблиците с обединени клетки от различни редове се представят чрез вложени таблици. Обратно, в модела за таблици на Уики за такива клетки се декларират диапазони от редове и колони."
+msgstr "В OpenDocument и в частност в LibreOffice таблиците с обединени клетки от различни редове се представят чрез вложени таблици. Обратно, в модела за таблици на уики за такива клетки се декларират диапазони от редове и колони."
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "Независимо от потребителските стилове за кантове и фон, таблиците винаги се експортират с шаблона „prettytable“, който се показва в уикистраниците с прост кант и получерно заглавие."
#: wikiformats.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id6255073\n"
"help.text"
msgid "Character set and special characters"
-msgstr ""
+msgstr "Знаков набор и специални знаци"
#: wikiformats.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "Знаковият набор на резултата от преобразуването е фиксиран на UTF-8. Това може и да не е подразбираният знаков набор в системата, поради което някои „специални знаци“ може да изглеждат неправилно с настройките по подразбиране. За да коригирате това, превключете редактора към кодиране UTF-8. Ако редакторът не поддържа смяна на кодирането, може да заредите резултата от преобразуването в браузъра Firefox и в него да превключите към кодиране UTF-8. Тогава ще можете да копирате и поставите резултата от преобразуването в използваната от вас програма."
#: wikisend.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id1743827\n"
"help.text"
msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload."
-msgstr ""
+msgstr "В диалоговия прозорец „Изпращане към MediaWiki“ задайте настройките за изпращане."
#: wikisend.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Въведете заглавието на статията. То ще се изписва най-горе при показването й. За нова статия заглавието трябва да бъде уникално в съответното уики. Ако въведете съществуващо заглавие, вашият текст ще замени този на съществуващата статия.</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr ""
+msgstr "<emph>Показване в браузъра</emph>: <ahelp hid=\".\">отметнете, за да видите качената уикистраница в уеббраузъра на системата.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id1188390\n"
"help.text"
msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
-msgstr ""
+msgstr "Можете да добавяте, редактирате и премахвате MediaWiki сървъри. Отворете диалоговия прозорец с настройки, като изберете <item type=\"menuitem\">Инструменти - Настройки - Интернет - MediaWiki</item>."
#: wikisettings.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id300607\n"
"help.text"
msgid "<ahelp hid=\".\">Click Add to add a new wiki server.<br/>Select an entry and click Edit to edit the account settings.<br/>Select an entry and click Remove to remove the entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Натиснете „Добавяне“, за да добавите нов уикисървър.<br/>Изберете елемент и натиснете „Редактиране“, за да редактирате данните за потребител.<br/>Изберете елемент и натиснете „Премахване“, за да го премахнете от списъка.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -742,4 +742,4 @@ msgctxt ""
"par_id1029084\n"
"help.text"
msgid "When you click Add or Edit, the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog opens."
-msgstr "Когато щракнете върху Добавяне или Редактиране, се показва диалоговият прозорец <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link>."
+msgstr "Когато щракнете върху „Добавяне“ или „Редактиране“, се показва диалоговият прозорец <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link>."
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index a143806b931..2da60f9d44c 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-09 11:55+0000\n"
+"PO-Revision-Date: 2017-02-19 19:43+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1483962901.000000\n"
+"X-POOTLE-MTIME: 1487533380.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -46408,7 +46408,6 @@ msgid "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapolates future values based on exi
msgstr "<ahelp hid=\"HID_FUNC_SCHAETZER\">Extrapola futurs valors a partir dels valors x i y que existeixen.</ahelp>"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3151344\n"
@@ -46426,7 +46425,6 @@ msgid "FORECAST.LINEAR(Value; DataY; DataX)"
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148744\n"
@@ -46436,7 +46434,6 @@ msgid "<emph>Value</emph> is the x value, for which the y value on the linear re
msgstr "<emph>Valor</emph> és el valor x per al qual s'ha de retornar el valor y a la regressió lineal."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3146326\n"
@@ -46446,7 +46443,6 @@ msgid "<emph>DataY</emph> is the array or range of known y's."
msgstr "<emph>DadesY</emph> és la matriu o l'interval de les y conegudes."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3150537\n"
@@ -46456,7 +46452,6 @@ msgid "<emph>DataX</emph> is the array or range of known x's."
msgstr "<emph>DadesX</emph> és la matriu o l'interval de les x conegudes."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"hd_id3147417\n"
@@ -49984,7 +49979,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Named Ranges and Expressions"
-msgstr ""
+msgstr "Intervals i expressions amb nom"
#: 04070000.xhp
msgctxt ""
@@ -50924,7 +50919,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Sheet</emph>)."
-msgstr ""
+msgstr "Aquesta protecció només es duu a terme si també protegiu el full (<emph>Eines ▸ Protegeix el full</emph>)."
#: 05020600.xhp
msgctxt ""
diff --git a/source/ca/sd/uiconfig/simpress/ui.po b/source/ca/sd/uiconfig/simpress/ui.po
index 1a224d6766d..85adc83219d 100644
--- a/source/ca/sd/uiconfig/simpress/ui.po
+++ b/source/ca/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-07-04 18:34+0000\n"
-"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
+"PO-Revision-Date: 2017-02-20 09:00+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1467657241.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487581248.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Opcions"
#: customanimationspanel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation List"
-msgstr ""
+msgstr "Llista d'animacions"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add Effect"
-msgstr ""
+msgstr "Afegeix un efecte"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove Effect"
-msgstr ""
+msgstr "Suprimeix l'efecte"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Mou amunt"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Mou avall"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start:"
-msgstr ""
+msgstr "_Inici:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Direction:"
-msgstr ""
+msgstr "_Direcció:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "On click"
-msgstr ""
+msgstr "En fer clic"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "With previous"
-msgstr ""
+msgstr "Amb l'anterior"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "After previous"
-msgstr ""
+msgstr "Després de l'anterior"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Categoria:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Entrance"
-msgstr ""
+msgstr "Entrada"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Èmfasi"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Exit"
-msgstr ""
+msgstr "Sortida"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Motion Paths"
-msgstr ""
+msgstr "Camins de moviment"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Misc Effects"
-msgstr ""
+msgstr "Altres efectes"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_uration:"
-msgstr ""
+msgstr "D_urada:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Seleccioneu la velocitat de l'animació."
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Effect:"
-msgstr ""
+msgstr "Efecte:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Previsualització automàtica"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Reprodueix"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Preview Effect"
-msgstr ""
+msgstr "Previsualitza l'efecte"
#: customanimationtexttab.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Seleccioneu la velocitat de l'animació."
#: customanimationtimingtab.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Document"
#: navigatorpanel.ui
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Finestra activa"
#: navigatorpanel.ui
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Slide"
-msgstr ""
+msgstr "Primera diapositiva"
#: navigatorpanel.ui
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Diapositiva anterior"
#: navigatorpanel.ui
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Diapositiva següent"
#: navigatorpanel.ui
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Última diapositiva"
#: navigatorpanel.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Mode d'arrossegament"
#: navigatorpanel.ui
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Shapes"
-msgstr ""
+msgstr "Mostra les formes"
#: notebookbar.ui
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Fitxer"
#: notebookbar.ui
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Clona"
#: notebookbar.ui
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Pics i numeració"
#: notebookbar.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grid"
-msgstr ""
+msgstr "Graella"
#: notebookbar.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Visualitza"
#: notebookbar.ui
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Taula"
#: notebookbar.ui
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imatge"
#: notebookbar_groups.ui
msgctxt ""
@@ -1823,7 +1823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Blank"
-msgstr ""
+msgstr "En blanc"
#: notebookbar_groups.ui
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Diapositiva de títol"
#: notebookbar_groups.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Text"
-msgstr ""
+msgstr "Títol, text"
#: notebookbar_groups.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Content"
-msgstr ""
+msgstr "Títol, contingut"
#: notebookbar_groups.ui
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centered Text"
-msgstr ""
+msgstr "Text centrat"
#: notebookbar_groups.ui
msgctxt ""
@@ -1868,7 +1868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hiperenllaç"
#: notebookbar_groups.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Nota al peu"
#: notebookbar_groups.ui
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Nota final"
#: notebookbar_groups.ui
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Marcador"
#: notebookbar_groups.ui
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Referència creuada"
#: notebookbar_groups.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Predeterminat"
#: notebookbar_groups.ui
msgctxt ""
@@ -1940,7 +1940,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Sense emplenament"
#: notebookbar_groups.ui
msgctxt ""
@@ -1949,7 +1949,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "With Shadow"
-msgstr ""
+msgstr "Amb ombra"
#: notebookbar_groups.ui
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 1"
-msgstr ""
+msgstr "Títol 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 2"
-msgstr ""
+msgstr "Títol 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1976,7 +1976,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Fitxer"
#: notebookbar_groups.ui
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Porta-retalls"
#: notebookbar_groups.ui
msgctxt ""
@@ -1994,10 +1994,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estil"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -2007,7 +2006,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -2023,7 +2021,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: notebookbar_groups.ui
msgctxt ""
@@ -2032,7 +2030,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Inici"
#: notebookbar_groups.ui
msgctxt ""
@@ -2041,7 +2039,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master"
-msgstr ""
+msgstr "Mestre"
#: notebookbar_groups.ui
msgctxt ""
@@ -2050,7 +2048,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Layout"
-msgstr ""
+msgstr "Disposició"
#: notebookbar_groups.ui
msgctxt ""
@@ -2059,7 +2057,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animació"
#: notebookbar_groups.ui
msgctxt ""
@@ -2068,7 +2066,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transition"
-msgstr ""
+msgstr "Transició"
#: notebookbar_groups.ui
msgctxt ""
@@ -2077,7 +2075,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: notebookbar_groups.ui
msgctxt ""
@@ -2086,7 +2084,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Formes"
#: notebookbar_groups.ui
msgctxt ""
@@ -2095,7 +2093,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Enllaços"
#: notebookbar_groups.ui
msgctxt ""
@@ -2104,7 +2102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Insereix"
#: notebookbar_groups.ui
msgctxt ""
@@ -2113,7 +2111,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estil"
#: notebookbar_groups.ui
msgctxt ""
@@ -2122,7 +2120,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Reinicia"
#: notebookbar_groups.ui
msgctxt ""
@@ -2131,7 +2129,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Ajusta"
#: notebookbar_groups.ui
msgctxt ""
@@ -2140,7 +2138,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Bloca"
#: notebookbar_groups.ui
msgctxt ""
@@ -2149,7 +2147,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imatge"
#: notebookbar_groups.ui
msgctxt ""
@@ -2158,7 +2156,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Cap"
#: notebookbar_groups.ui
msgctxt ""
@@ -2167,7 +2165,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Òptim"
#: notebookbar_groups.ui
msgctxt ""
@@ -2176,7 +2174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Paral·lel"
#: notebookbar_groups.ui
msgctxt ""
@@ -2185,7 +2183,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Abans"
#: notebookbar_groups.ui
msgctxt ""
@@ -2194,7 +2192,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Després"
#: notebookbar_groups.ui
msgctxt ""
@@ -2212,7 +2210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Contorn"
#: notebookbar_groups.ui
msgctxt ""
@@ -2221,7 +2219,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Edita el contorn"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -3958,7 +3956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Duration:"
-msgstr ""
+msgstr "Durada:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3967,7 +3965,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of Slide Transition."
-msgstr ""
+msgstr "Seleccioneu la velocitat de la transició de la diapositiva."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3976,7 +3974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Variant:"
-msgstr ""
+msgstr "Variant:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3985,7 +3983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sound:"
-msgstr ""
+msgstr "So:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3994,7 +3992,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "No sound"
-msgstr ""
+msgstr "Sense so"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4003,7 +4001,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Stop previous sound"
-msgstr ""
+msgstr "Atura el so anterior"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4012,7 +4010,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Other sound..."
-msgstr ""
+msgstr "Un altre so..."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4021,7 +4019,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Loop until next sound"
-msgstr ""
+msgstr "Repeteix fins al so següent"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4030,7 +4028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "On mouse click"
-msgstr ""
+msgstr "En fer clic amb el ratolí"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4039,7 +4037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatically after:"
-msgstr ""
+msgstr "Automàticament després de:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4048,7 +4046,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4057,7 +4055,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Previsualització automàtica"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4066,7 +4064,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Aplica la transició a totes les diapositives"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4075,7 +4073,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Reprodueix"
#: tabledesignpanel.ui
msgctxt ""
@@ -4138,7 +4136,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Header row"
-msgstr ""
+msgstr "Fila de _capçalera"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4147,7 +4145,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tot_al row"
-msgstr ""
+msgstr "Fila de _total"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4156,7 +4154,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Banded rows"
-msgstr ""
+msgstr "Files _ratllades"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4165,7 +4163,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ba_nded columns"
-msgstr ""
+msgstr "Columnes _ratllades"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4174,7 +4172,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fi_rst column"
-msgstr ""
+msgstr "P_rimera columna"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4183,7 +4181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Last column"
-msgstr ""
+msgstr "Ú_ltima columna"
#: templatedialog.ui
msgctxt ""
diff --git a/source/ca/sw/uiconfig/swriter/ui.po b/source/ca/sw/uiconfig/swriter/ui.po
index 1944e1642ec..5157f5b6da6 100644
--- a/source/ca/sw/uiconfig/swriter/ui.po
+++ b/source/ca/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-17 11:45+0000\n"
+"PO-Revision-Date: 2017-02-20 08:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: none\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484653516.000000\n"
+"X-POOTLE-MTIME: 1487580330.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -8901,7 +8901,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Level"
-msgstr ""
+msgstr "Un nivell cap amunt"
#: navigatorpanel.ui
msgctxt ""
@@ -8910,7 +8910,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Level"
-msgstr ""
+msgstr "Un nivell cap avall"
#: navigatorpanel.ui
msgctxt ""
@@ -8937,7 +8937,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Canvia a la visualització mestra"
#: navigatorpanel.ui
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index b314133a408..e37b214547d 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ 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-07-17 08:55+0000\n"
+"PO-Revision-Date: 2017-02-19 21:38+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468745734.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487540290.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"110\n"
"help.text"
msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.odt</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.odt</emph> in URL notation."
-msgstr ""
+msgstr "Zápis URL nedovoluje použití některých speciálních znaků. Ty je třeba nahradit buď jinými znaky, nebo zakódovat. Jako oddělovač cesty se používá lomítko (<emph>/</emph>). Např. soubor nazvaný v \"notaci systému Windows\" <emph>C:\\My File.odt</emph> bude v zápisu URL pojmenován <emph>file:///C|/My%20File.odt</emph>."
#: 00000003.xhp
msgctxt ""
@@ -10788,7 +10788,7 @@ msgctxt ""
"par_id3154012\n"
"help.text"
msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.ods\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
-msgstr ""
+msgstr "Chcete-li vygenerovat seznam všech existujících souborů v určitém adresáři, postupujte takto: poprvé zavolejte funkci Dir s kompletní vyhledávací cestou pro soubory, např. \"D:\\Files\\*.ods\". Je-li cesta správná a vyhledávání nalezne alespoň jeden soubor, funkce Dir vrátí název prvního souboru, který odpovídá cestě. Další názvy souborů získáte opětovným voláním funkce Dir, ovšem bez argumentů."
#: 03020404.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sdraw.po b/source/cs/helpcontent2/source/text/sdraw.po
index ea0dc59b509..235b443b94b 100644
--- a/source/cs/helpcontent2/source/text/sdraw.po
+++ b/source/cs/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ 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-05-21 13:18+0000\n"
+"PO-Revision-Date: 2017-02-19 21:32+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463836700.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487539961.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "Vítejte v nápovědě k $[officename] Draw"
#: main0000.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared.po b/source/cs/helpcontent2/source/text/shared.po
index adb5163c80e..93c40868ad7 100644
--- a/source/cs/helpcontent2/source/text/shared.po
+++ b/source/cs/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ 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-04-17 20:50+0000\n"
+"PO-Revision-Date: 2017-02-19 21:34+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1460926220.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487540098.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Návrh tabulky"
#: main0204.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id16200812240344\n"
"help.text"
msgid "<ahelp hid=\".uno:TableDesign\">Opens the Table Design. Double-click a preview to format the table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TableDesign\">Otevře dialogové okno Návrh tabulky. Chcete-li tabulku formátovat, poklepejte na její náhled.</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id3153752\n"
"help.text"
msgid "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Ikona</alt></image>"
#: main0204.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Návrh tabulky"
#: main0204.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/smath.po b/source/cs/helpcontent2/source/text/smath.po
index 56ccac3aba1..acd93469819 100644
--- a/source/cs/helpcontent2/source/text/smath.po
+++ b/source/cs/helpcontent2/source/text/smath.po
@@ -4,8 +4,8 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2015-12-09 21:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 21:36+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449695504.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487540163.000000\n"
#: main0000.xhp
msgctxt ""
@@ -250,7 +250,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
-msgstr ""
+msgstr "V této nabídce lze nastavit měřítko zobrazení a určit, které prvky budou zobrazeny. Většinu příkazů, které lze zadat v okně <emph>Příkazy</emph>, lze také zadat klepnutím myší, pokud jste již otevřeli okno <link href=\"text/smath/01/03090000.xhp\" name=\"Zobrazit - Prvky\"><emph>Zobrazit - Prvky</emph></link>."
#: main0103.xhp
msgctxt ""
@@ -615,4 +615,4 @@ msgctxt ""
"par_id3148774\n"
"help.text"
msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements pane, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window."
-msgstr ""
+msgstr "Práci se vzorci lze usnadnit používáním místních nabídek, které můžete otevřít klepnutím pravým tlačítkem myši. To se týká především okna Příkazy. Tato místní nabídka obsahuje nejen všechny příkazy, které se nacházejí v okně Prvky, ale také operátory a další prvky, které lze do vzorce vložit klepnutím myší, aniž by bylo nutno je ručně zadávat do okna Příkazy."
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index 5716f7ea09f..217b33e1f53 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-01-29 21:31+0000\n"
+"PO-Revision-Date: 2017-02-18 17:18+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485725498.000000\n"
+"X-POOTLE-MTIME: 1487438304.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -16999,7 +16999,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline"
-msgstr ""
+msgstr "Osnova"
#: GenericCommands.xcu
msgctxt ""
@@ -17008,7 +17008,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Outline List"
-msgstr ""
+msgstr "~Osnova seznamu"
#: GenericCommands.xcu
msgctxt ""
@@ -17017,7 +17017,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Outline List Style"
-msgstr ""
+msgstr "Nastavit osnovu stylu seznamu"
#: GenericCommands.xcu
msgctxt ""
@@ -17287,7 +17287,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styles"
-msgstr ""
+msgstr "Styly"
#: GenericCommands.xcu
msgctxt ""
@@ -17296,7 +17296,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "St~yles and Formatting"
-msgstr ""
+msgstr "St~yly a formátování"
#: GenericCommands.xcu
msgctxt ""
@@ -17305,7 +17305,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Styles and Formatting Sidebar"
-msgstr ""
+msgstr "Zobrazit postranní lištu Styly a formátování"
#: GenericCommands.xcu
msgctxt ""
@@ -17359,7 +17359,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Edit Mode"
-msgstr ""
+msgstr "Přepnout režim úprav"
#: GenericCommands.xcu
msgctxt ""
@@ -17503,7 +17503,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Edit Style..."
-msgstr ""
+msgstr "~Upravit styl..."
#: GenericCommands.xcu
msgctxt ""
@@ -17512,7 +17512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "Upravit"
#: GenericCommands.xcu
msgctxt ""
@@ -17521,7 +17521,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style..."
-msgstr ""
+msgstr "~Nový styl..."
#: GenericCommands.xcu
msgctxt ""
@@ -17530,7 +17530,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New"
-msgstr ""
+msgstr "Nový"
#: GenericCommands.xcu
msgctxt ""
@@ -17557,7 +17557,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Update Style"
-msgstr ""
+msgstr "~Aktualizovat styl"
#: GenericCommands.xcu
msgctxt ""
@@ -17566,7 +17566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update"
-msgstr ""
+msgstr "Aktualizovat"
#: GenericCommands.xcu
msgctxt ""
@@ -17809,7 +17809,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Link"
-msgstr ""
+msgstr "Otevřít hypertextový odkaz"
#: GenericCommands.xcu
msgctxt ""
@@ -18304,7 +18304,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Image"
-msgstr ""
+msgstr "Vložit obrázek"
#: GenericCommands.xcu
msgctxt ""
@@ -18349,7 +18349,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Check Spelling"
-msgstr ""
+msgstr "Zkontrolovat pravopis"
#: GenericCommands.xcu
msgctxt ""
@@ -18367,7 +18367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spelling"
-msgstr ""
+msgstr "Kontrola pravopisu"
#: GenericCommands.xcu
msgctxt ""
@@ -18376,7 +18376,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Spelling and Grammar..."
-msgstr ""
+msgstr "~Kontrola pravopisu a gramatiky..."
#: GenericCommands.xcu
msgctxt ""
@@ -18385,7 +18385,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Check Spelling and Grammar"
-msgstr ""
+msgstr "Zkontrolovat pravopis a gramatiku"
#: GenericCommands.xcu
msgctxt ""
@@ -18403,7 +18403,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Character Spacing"
-msgstr ""
+msgstr "Nastavit rozestup znaků"
#: GenericCommands.xcu
msgctxt ""
@@ -18421,7 +18421,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Draw Functions"
-msgstr ""
+msgstr "Kreslicí funkce"
#: GenericCommands.xcu
msgctxt ""
@@ -18430,7 +18430,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Draw Functions"
-msgstr ""
+msgstr "Zobrazit kreslicí funkce"
#: GenericCommands.xcu
msgctxt ""
@@ -18511,7 +18511,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Text Box"
-msgstr ""
+msgstr "Vložit textové pole"
#: GenericCommands.xcu
msgctxt ""
@@ -18538,7 +18538,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Fontwork Text"
-msgstr ""
+msgstr "Vložit text písmomalby"
#: GenericCommands.xcu
msgctxt ""
@@ -18700,7 +18700,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Link..."
-msgstr ""
+msgstr "~Hypertextový odkaz..."
#: GenericCommands.xcu
msgctxt ""
@@ -18709,7 +18709,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Link"
-msgstr ""
+msgstr "Vložit hypertextový odkaz"
#: GenericCommands.xcu
msgctxt ""
@@ -18781,7 +18781,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Small capitals"
-msgstr ""
+msgstr "Kapitálky"
#: GenericCommands.xcu
msgctxt ""
@@ -18844,7 +18844,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr ""
+msgstr "Štěteček formátu"
#: GenericCommands.xcu
msgctxt ""
@@ -18853,7 +18853,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Štěteček formátu"
#: GenericCommands.xcu
msgctxt ""
@@ -18943,7 +18943,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Emoji"
-msgstr ""
+msgstr "Emodži"
#: GenericCommands.xcu
msgctxt ""
@@ -18952,7 +18952,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Emoji"
-msgstr ""
+msgstr "Vložit emodži"
#: GenericCommands.xcu
msgctxt ""
@@ -19150,9 +19150,10 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Navigator Window"
-msgstr ""
+msgstr "Zobrazit okno navigátoru"
#: GenericCommands.xcu
+#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Notebookbar\n"
@@ -19510,7 +19511,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grid"
-msgstr ""
+msgstr "Mřížka"
#: GenericCommands.xcu
msgctxt ""
@@ -19519,7 +19520,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Display Grid"
-msgstr ""
+msgstr "Zobrazovat ~mřížku"
#: GenericCommands.xcu
msgctxt ""
@@ -19528,7 +19529,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Display Grid"
-msgstr ""
+msgstr "Zobrazovat mřížku"
#: GenericCommands.xcu
msgctxt ""
@@ -19627,7 +19628,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Compare"
-msgstr ""
+msgstr "Porovnat"
#: GenericCommands.xcu
msgctxt ""
@@ -19636,7 +19637,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Co~mpare Document..."
-msgstr ""
+msgstr "Porovnat dok~ument..."
#: GenericCommands.xcu
msgctxt ""
@@ -19645,7 +19646,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Compare Non-Track Changed Document"
-msgstr ""
+msgstr "Porovnat dokument s nezaznamenanými změnami"
#: GenericCommands.xcu
msgctxt ""
@@ -19654,7 +19655,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge"
-msgstr ""
+msgstr "Sloučit"
#: GenericCommands.xcu
msgctxt ""
@@ -19663,7 +19664,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Merge Documen~t..."
-msgstr ""
+msgstr "Sloučit ~dokument..."
#: GenericCommands.xcu
msgctxt ""
@@ -19672,7 +19673,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Merge Track Changed Document"
-msgstr ""
+msgstr "Sloučit dokument se zaznamenanými změnami"
#: GenericCommands.xcu
msgctxt ""
@@ -19834,7 +19835,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Zmenšit"
#: GenericCommands.xcu
msgctxt ""
@@ -19843,7 +19844,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Zmenšit odsazení"
#: GenericCommands.xcu
msgctxt ""
@@ -19852,7 +19853,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Zmenšit odsazení"
#: GenericCommands.xcu
msgctxt ""
@@ -19861,7 +19862,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Zvětšit"
#: GenericCommands.xcu
msgctxt ""
@@ -19870,7 +19871,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Zvětšit odsazení"
#: GenericCommands.xcu
msgctxt ""
@@ -19879,7 +19880,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Zvětšit odsazení"
#: GenericCommands.xcu
msgctxt ""
@@ -20032,7 +20033,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Automatická kontrola pravopisu"
#: GenericCommands.xcu
msgctxt ""
@@ -20041,7 +20042,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Automatic Spell Checking"
-msgstr ""
+msgstr "A~utomatická kontrola pravopisu"
#: GenericCommands.xcu
msgctxt ""
@@ -20050,7 +20051,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Automatic Spell Checking"
-msgstr ""
+msgstr "Přepnout automatickou kontrolu pravopisu"
#: GenericCommands.xcu
msgctxt ""
@@ -20086,7 +20087,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Symbol"
-msgstr ""
+msgstr "Symbol"
#: GenericCommands.xcu
msgctxt ""
@@ -20095,7 +20096,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "S~pecial Character..."
-msgstr ""
+msgstr "Speciální ~znak..."
#: GenericCommands.xcu
msgctxt ""
@@ -20104,7 +20105,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Special Character"
-msgstr ""
+msgstr "Vložit speciální znak"
#: GenericCommands.xcu
msgctxt ""
@@ -20158,7 +20159,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -20167,7 +20168,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Export as PDF..."
-msgstr ""
+msgstr "Exportovat do PD~F..."
#: GenericCommands.xcu
msgctxt ""
@@ -20176,7 +20177,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export as PDF"
-msgstr ""
+msgstr "Exportovat jako PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -20185,7 +20186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "PDF"
-msgstr ""
+msgstr "PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -20203,7 +20204,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export as PDF"
-msgstr ""
+msgstr "Exportovat jako PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -20275,7 +20276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Feedback..."
-msgstr "Zašlete nám svůj názor..."
+msgstr "Odeslat ~zpětnou vazbu..."
#: GenericCommands.xcu
msgctxt ""
@@ -20284,7 +20285,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Get help online..."
-msgstr ""
+msgstr "~Poradit se online..."
#: GenericCommands.xcu
msgctxt ""
@@ -20293,7 +20294,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User Guides..."
-msgstr ""
+msgstr "~Uživatelské příručky..."
#: GenericCommands.xcu
msgctxt ""
@@ -20482,7 +20483,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gallery"
-msgstr ""
+msgstr "Galerie"
#: GenericCommands.xcu
msgctxt ""
@@ -20500,7 +20501,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open Clip Art and Media Gallery"
-msgstr ""
+msgstr "Galerie obrázků a multimédií"
#: GenericCommands.xcu
msgctxt ""
@@ -21022,7 +21023,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Print Preview"
-msgstr ""
+msgstr "Přepnout náhled tisku"
#: GenericCommands.xcu
msgctxt ""
@@ -21094,7 +21095,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail"
-msgstr ""
+msgstr "E-mailem"
#: GenericCommands.xcu
msgctxt ""
@@ -21103,7 +21104,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~E-mail Document..."
-msgstr ""
+msgstr "Dokument ~e-mailem..."
#: GenericCommands.xcu
msgctxt ""
@@ -21112,7 +21113,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Attach to E-mail"
-msgstr ""
+msgstr "Připojit k e-mailu"
#: GenericCommands.xcu
msgctxt ""
@@ -21481,7 +21482,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Extrusion"
-msgstr ""
+msgstr "Přepnout plastičnost"
#: GenericCommands.xcu
msgctxt ""
@@ -21598,7 +21599,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toolbar Layout"
-msgstr ""
+msgstr "Rozvržení nástrojových lišt"
#: GenericCommands.xcu
msgctxt ""
@@ -21652,7 +21653,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sign Existing PDF..."
-msgstr ""
+msgstr "Podepsat existující PDF..."
#: GenericCommands.xcu
msgctxt ""
@@ -21814,7 +21815,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Top"
-msgstr ""
+msgstr "Zarovnat nahoru"
#: GenericCommands.xcu
msgctxt ""
@@ -21823,7 +21824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center"
-msgstr ""
+msgstr "Na střed"
#: GenericCommands.xcu
msgctxt ""
@@ -21832,7 +21833,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Center Vertically"
-msgstr ""
+msgstr "Svisle na střed"
#: GenericCommands.xcu
msgctxt ""
@@ -21850,7 +21851,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Bottom"
-msgstr ""
+msgstr "Zarovnat dolů"
#: GenericCommands.xcu
msgctxt ""
@@ -21967,7 +21968,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Chart"
-msgstr ""
+msgstr "~Graf"
#: GenericCommands.xcu
msgctxt ""
@@ -22003,7 +22004,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Elektronické podpisy"
#: GenericCommands.xcu
msgctxt ""
@@ -22210,7 +22211,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Media"
-msgstr ""
+msgstr "Multimédia"
#: GenericCommands.xcu
msgctxt ""
@@ -22219,7 +22220,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Audio or ~Video..."
-msgstr ""
+msgstr "~Zvuk nebo video..."
#: GenericCommands.xcu
msgctxt ""
@@ -22228,7 +22229,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Vložit zvuk nebo video"
#: GenericCommands.xcu
msgctxt ""
@@ -22453,7 +22454,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select"
-msgstr ""
+msgstr "Vybrat"
#: GenericCommands.xcu
msgctxt ""
@@ -22462,7 +22463,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Special"
-msgstr ""
+msgstr "Vložit jinak"
#: GenericCommands.xcu
msgctxt ""
@@ -22471,7 +22472,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Menubar"
-msgstr ""
+msgstr "Hlavní nabídka"
#: GenericCommands.xcu
msgctxt ""
@@ -22480,7 +22481,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Name..."
-msgstr ""
+msgstr "Název..."
#: GenericCommands.xcu
msgctxt ""
@@ -22489,7 +22490,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Description..."
-msgstr ""
+msgstr "Popis..."
#: GenericCommands.xcu
msgctxt ""
@@ -22498,7 +22499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Restart in Safe Mode..."
-msgstr ""
+msgstr "Restartovat v nouzovém režimu..."
#: ImpressWindowState.xcu
msgctxt ""
@@ -22948,7 +22949,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "Klasifikace TSCP"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23191,7 +23192,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr ""
+msgstr "Standardní (režim jediné lišty)"
#: MathCommands.xcu
msgctxt ""
@@ -24001,7 +24002,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Page"
-msgstr ""
+msgstr "Stránka"
#: Sidebar.xcu
msgctxt ""
@@ -24010,7 +24011,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Shapes"
-msgstr ""
+msgstr "Tvary"
#: Sidebar.xcu
msgctxt ""
@@ -24037,7 +24038,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Animace"
#: Sidebar.xcu
msgctxt ""
@@ -24109,7 +24110,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#: Sidebar.xcu
msgctxt ""
@@ -24127,7 +24128,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Media Playback"
-msgstr ""
+msgstr "Přehrávání médií"
#: Sidebar.xcu
msgctxt ""
@@ -24136,7 +24137,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Styles"
-msgstr ""
+msgstr "Styly"
#: Sidebar.xcu
msgctxt ""
@@ -24145,7 +24146,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Format"
-msgstr ""
+msgstr "Formát"
#: Sidebar.xcu
msgctxt ""
@@ -24154,7 +24155,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Header"
-msgstr ""
+msgstr "Záhlaví"
#: Sidebar.xcu
msgctxt ""
@@ -24163,7 +24164,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Footer"
-msgstr ""
+msgstr "Zápatí"
#: Sidebar.xcu
msgctxt ""
@@ -24226,7 +24227,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: Sidebar.xcu
msgctxt ""
@@ -24280,7 +24281,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Animace"
#: Sidebar.xcu
msgctxt ""
@@ -24748,7 +24749,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: ToolbarMode.xcu
msgctxt ""
@@ -24757,7 +24758,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single toolbar"
-msgstr ""
+msgstr "Jediná nástrojová lišta"
#: ToolbarMode.xcu
msgctxt ""
@@ -24766,7 +24767,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr ""
+msgstr "Postranní lišta"
#: ToolbarMode.xcu
msgctxt ""
@@ -24784,7 +24785,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: ToolbarMode.xcu
msgctxt ""
@@ -24793,7 +24794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single toolbar"
-msgstr ""
+msgstr "Jediná nástrojová lišta"
#: ToolbarMode.xcu
msgctxt ""
@@ -24802,7 +24803,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr ""
+msgstr "Postranní lišta"
#: ToolbarMode.xcu
msgctxt ""
@@ -24820,7 +24821,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: ToolbarMode.xcu
msgctxt ""
@@ -24829,7 +24830,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Single toolbar"
-msgstr ""
+msgstr "Jediná nástrojová lišta"
#: ToolbarMode.xcu
msgctxt ""
@@ -24928,7 +24929,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comments"
-msgstr ""
+msgstr "Zobrazit komentáře"
#: WriterCommands.xcu
msgctxt ""
@@ -24937,7 +24938,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentáře"
#: WriterCommands.xcu
msgctxt ""
@@ -25018,7 +25019,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Endnote"
-msgstr ""
+msgstr "~Vysvětlivka"
#: WriterCommands.xcu
msgctxt ""
@@ -25027,7 +25028,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Endnote"
-msgstr ""
+msgstr "Vložit vysvětlivku"
#: WriterCommands.xcu
msgctxt ""
@@ -25054,7 +25055,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents"
-msgstr ""
+msgstr "Obsah"
#: WriterCommands.xcu
msgctxt ""
@@ -25063,7 +25064,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr ""
+msgstr "Vložit obsah, rejstřík nebo seznam použité literatury"
#: WriterCommands.xcu
msgctxt ""
@@ -25126,7 +25127,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update All"
-msgstr ""
+msgstr "~Aktualizovat vše"
#: WriterCommands.xcu
msgctxt ""
@@ -25135,7 +25136,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Indexes and ~Tables"
-msgstr ""
+msgstr "Rejstříky a ~tabulky"
#: WriterCommands.xcu
msgctxt ""
@@ -25144,7 +25145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Update Index"
-msgstr ""
+msgstr "Aktualizovat rejstřík"
#: WriterCommands.xcu
msgctxt ""
@@ -25153,7 +25154,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Current ~Index"
-msgstr ""
+msgstr "Aktuální ~rejstřík"
#: WriterCommands.xcu
msgctxt ""
@@ -25180,7 +25181,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect..."
-msgstr ""
+msgstr "Za~mknout..."
#: WriterCommands.xcu
msgctxt ""
@@ -25189,7 +25190,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect Track Changes"
-msgstr ""
+msgstr "Zamknout sledování změn"
#: WriterCommands.xcu
msgctxt ""
@@ -25198,7 +25199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Reject"
-msgstr ""
+msgstr "Odmítnout"
#: WriterCommands.xcu
msgctxt ""
@@ -25207,7 +25208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Reject Track Change"
-msgstr ""
+msgstr "Odmítnout sledovanou změnu"
#: WriterCommands.xcu
msgctxt ""
@@ -25216,7 +25217,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Reject Change"
-msgstr ""
+msgstr "Odmítnout změnu"
#: WriterCommands.xcu
msgctxt ""
@@ -25225,7 +25226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accept"
-msgstr ""
+msgstr "Přijmout"
#: WriterCommands.xcu
msgctxt ""
@@ -25234,7 +25235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accept Track Change"
-msgstr ""
+msgstr "Přijmout sledovanou změnu"
#: WriterCommands.xcu
msgctxt ""
@@ -25243,7 +25244,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Accept Change"
-msgstr ""
+msgstr "Přijmout změnu"
#: WriterCommands.xcu
msgctxt ""
@@ -25252,7 +25253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Next"
-msgstr ""
+msgstr "~Následující"
#: WriterCommands.xcu
msgctxt ""
@@ -25261,7 +25262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Next Track Change"
-msgstr ""
+msgstr "Následující sledovaná změna"
#: WriterCommands.xcu
msgctxt ""
@@ -25270,7 +25271,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pr~evious"
-msgstr ""
+msgstr "~Předchozí"
#: WriterCommands.xcu
msgctxt ""
@@ -25279,7 +25280,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Previous Track Change"
-msgstr ""
+msgstr "Předchozí sledovaná změna"
#: WriterCommands.xcu
msgctxt ""
@@ -25306,7 +25307,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Record Track Changes"
-msgstr ""
+msgstr "Zaznamenávat změny"
#: WriterCommands.xcu
msgctxt ""
@@ -25315,7 +25316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Track Changes Functions"
-msgstr ""
+msgstr "Funkce sledování změn"
#: WriterCommands.xcu
msgctxt ""
@@ -25324,7 +25325,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes Functions"
-msgstr ""
+msgstr "Zobrazit funkce sledování změn"
#: WriterCommands.xcu
msgctxt ""
@@ -25342,7 +25343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes"
-msgstr ""
+msgstr "Zobrazit sledované změny"
#: WriterCommands.xcu
msgctxt ""
@@ -25378,7 +25379,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert ODF Track Change Comment"
-msgstr ""
+msgstr "Vložit komentář ke sledované změně"
#: WriterCommands.xcu
msgctxt ""
@@ -25405,7 +25406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage..."
-msgstr ""
+msgstr "~Spravovat..."
#: WriterCommands.xcu
msgctxt ""
@@ -25414,7 +25415,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Manage Track Changes"
-msgstr ""
+msgstr "Spravovat sledované změny"
#: WriterCommands.xcu
msgctxt ""
@@ -25450,7 +25451,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Link"
-msgstr ""
+msgstr "~Hypertextový odkaz"
#: WriterCommands.xcu
msgctxt ""
@@ -25459,7 +25460,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit Link..."
-msgstr ""
+msgstr "Upravit hypertextový odkaz..."
#: WriterCommands.xcu
msgctxt ""
@@ -25468,7 +25469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Link"
-msgstr ""
+msgstr "Odebrat hypertextový odkaz"
#: WriterCommands.xcu
msgctxt ""
@@ -25477,7 +25478,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Copy Link Location"
-msgstr ""
+msgstr "Zkopírovat adresu odkazu"
#: WriterCommands.xcu
msgctxt ""
@@ -25495,7 +25496,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Bookmark"
-msgstr ""
+msgstr "Vložit záložku"
#: WriterCommands.xcu
msgctxt ""
@@ -25567,7 +25568,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Caption"
-msgstr ""
+msgstr "Vložit popisek"
#: WriterCommands.xcu
msgctxt ""
@@ -25603,7 +25604,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Cross-reference"
-msgstr ""
+msgstr "Vložit křížový odkaz"
#: WriterCommands.xcu
msgctxt ""
@@ -25612,7 +25613,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Link"
-msgstr ""
+msgstr "Vložit hypertextový odkaz"
#: WriterCommands.xcu
msgctxt ""
@@ -25639,7 +25640,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr ""
+msgstr "Z~alomení stránky"
#: WriterCommands.xcu
msgctxt ""
@@ -25648,7 +25649,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Page Break"
-msgstr ""
+msgstr "Vložit zalomení stránky"
#: WriterCommands.xcu
msgctxt ""
@@ -25657,7 +25658,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "Tabulka"
#: WriterCommands.xcu
msgctxt ""
@@ -25666,7 +25667,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Insert ~Table..."
-msgstr ""
+msgstr "Vložit ~tabulku..."
#: WriterCommands.xcu
msgctxt ""
@@ -25693,7 +25694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame"
-msgstr ""
+msgstr "Rámec"
#: WriterCommands.xcu
msgctxt ""
@@ -25711,7 +25712,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Frame"
-msgstr ""
+msgstr "Vložit rámec"
#: WriterCommands.xcu
msgctxt ""
@@ -25729,7 +25730,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Index Entry"
-msgstr ""
+msgstr "Vložit položku rejstříku"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25937,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Formula"
-msgstr ""
+msgstr "Vložit vzorec"
#: WriterCommands.xcu
msgctxt ""
@@ -25999,7 +26000,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fiel~d"
-msgstr ""
+msgstr "~Pole"
#: WriterCommands.xcu
msgctxt ""
@@ -26008,7 +26009,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Field"
-msgstr ""
+msgstr "Vložit pole"
#: WriterCommands.xcu
msgctxt ""
@@ -26089,7 +26090,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnote"
-msgstr ""
+msgstr "~Poznámka pod čarou"
#: WriterCommands.xcu
msgctxt ""
@@ -26098,7 +26099,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Footnote"
-msgstr ""
+msgstr "Vložit poznámku pod čarou"
#: WriterCommands.xcu
msgctxt ""
@@ -26170,7 +26171,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Links Active"
-msgstr ""
+msgstr "Aktivní hypertextové odkazy"
#: WriterCommands.xcu
msgctxt ""
@@ -26656,7 +26657,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Vymazat"
#: WriterCommands.xcu
msgctxt ""
@@ -26665,7 +26666,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "~Vymazat přímé formátování"
#: WriterCommands.xcu
msgctxt ""
@@ -26674,7 +26675,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Vymazat přímé formátování"
#: WriterCommands.xcu
msgctxt ""
@@ -28645,7 +28646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Formatting Marks"
-msgstr ""
+msgstr "Řídicí znaky"
#: WriterCommands.xcu
msgctxt ""
@@ -28654,7 +28655,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "For~matting Marks"
-msgstr ""
+msgstr "Ří~dicí znaky"
#: WriterCommands.xcu
msgctxt ""
@@ -28663,7 +28664,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Formatting Marks"
-msgstr ""
+msgstr "Přepnout řídicí znaky"
#: WriterCommands.xcu
msgctxt ""
@@ -29185,7 +29186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paragraph Style"
-msgstr ""
+msgstr "Styl odstavce"
#: WriterCommands.xcu
msgctxt ""
@@ -29194,7 +29195,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Paragraph Style"
-msgstr ""
+msgstr "Nastavit styl odstavce"
#: WriterCommands.xcu
msgctxt ""
@@ -29203,7 +29204,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Orientation"
-msgstr ""
+msgstr "Orientace"
#: WriterCommands.xcu
msgctxt ""
@@ -29212,7 +29213,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Size"
-msgstr ""
+msgstr "Velikost stránky"
#: WriterCommands.xcu
msgctxt ""
@@ -29221,7 +29222,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Margin"
-msgstr ""
+msgstr "Okraje stránky"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -31129,7 +31130,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Šipky"
#: WriterWindowState.xcu
msgctxt ""
@@ -31138,7 +31139,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "Klasifikace TSCP"
#: WriterWindowState.xcu
msgctxt ""
diff --git a/source/cs/sc/source/ui/src.po b/source/cs/sc/source/ui/src.po
index 7480577db6e..92c67f89352 100644
--- a/source/cs/sc/source/ui/src.po
+++ b/source/cs/sc/source/ui/src.po
@@ -4,7 +4,7 @@ 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-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-01-06 21:59+0000\n"
+"PO-Revision-Date: 2017-02-18 14:58+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483739959.000000\n"
+"X-POOTLE-MTIME: 1487429902.000000\n"
#: filter.src
msgctxt ""
@@ -4383,7 +4383,7 @@ msgctxt ""
"STR_COND_AND\n"
"string.text"
msgid "and"
-msgstr ""
+msgstr "a"
#: globstr.src
msgctxt ""
@@ -4713,7 +4713,7 @@ msgctxt ""
"STR_GENERAL\n"
"string.text"
msgid "General"
-msgstr ""
+msgstr "Obecný"
#: globstr.src
msgctxt ""
@@ -4722,7 +4722,7 @@ msgctxt ""
"STR_NUMBER\n"
"string.text"
msgid "Number"
-msgstr ""
+msgstr "Číslo"
#: globstr.src
msgctxt ""
@@ -4731,7 +4731,7 @@ msgctxt ""
"STR_PERCENT\n"
"string.text"
msgid "Percent"
-msgstr ""
+msgstr "Procento"
#: globstr.src
msgctxt ""
@@ -4740,7 +4740,7 @@ msgctxt ""
"STR_CURRENCY\n"
"string.text"
msgid "Currency"
-msgstr ""
+msgstr "Měna"
#: globstr.src
msgctxt ""
@@ -4749,7 +4749,7 @@ msgctxt ""
"STR_DATE\n"
"string.text"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: globstr.src
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"STR_TIME\n"
"string.text"
msgid "Time"
-msgstr ""
+msgstr "Čas"
#: globstr.src
msgctxt ""
@@ -4767,7 +4767,7 @@ msgctxt ""
"STR_SCIENTIFIC\n"
"string.text"
msgid "Scientific"
-msgstr ""
+msgstr "Vědecký"
#: globstr.src
msgctxt ""
@@ -4776,7 +4776,7 @@ msgctxt ""
"STR_FRACTION\n"
"string.text"
msgid "Fraction"
-msgstr ""
+msgstr "Zlomek"
#: globstr.src
msgctxt ""
@@ -4785,7 +4785,7 @@ msgctxt ""
"STR_BOOLEAN_VALUE\n"
"string.text"
msgid "Boolean Value"
-msgstr ""
+msgstr "Booleovská hodnota"
#: globstr.src
msgctxt ""
@@ -4794,7 +4794,7 @@ msgctxt ""
"STR_TEXT\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: scerrors.src
msgctxt ""
@@ -8338,7 +8338,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates the annual net interest rate for a nominal interest rate."
-msgstr ""
+msgstr "Vypočítá efektivní roční úrokovou sazbu pro nominální úrokovou míru."
#: scfuncs.src
msgctxt ""
@@ -8347,7 +8347,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "NOM"
-msgstr ""
+msgstr "NOM"
#: scfuncs.src
msgctxt ""
@@ -8356,7 +8356,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "Nominal Interest"
-msgstr ""
+msgstr "Nominální úroková míra"
#: scfuncs.src
msgctxt ""
@@ -8365,7 +8365,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "P"
-msgstr ""
+msgstr "P"
#: scfuncs.src
msgctxt ""
@@ -8374,7 +8374,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Periods. The number of interest payments per year."
-msgstr ""
+msgstr "Období. Počet úročených období za rok."
#: scfuncs.src
msgctxt ""
@@ -8662,7 +8662,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Duration. Calculates the number of periods required by an investment to attain the desired value."
-msgstr ""
+msgstr "Doba trvání. Vypočítá počet období potřebných k tomu, aby investice dosáhla požadované hodnoty."
#: scfuncs.src
msgctxt ""
@@ -8671,7 +8671,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "RATE"
-msgstr ""
+msgstr "RATE"
#: scfuncs.src
msgctxt ""
@@ -8680,7 +8680,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The constant rate of interest."
-msgstr ""
+msgstr "Konstantní úroková míra."
#: scfuncs.src
msgctxt ""
@@ -8689,7 +8689,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "pv"
-msgstr ""
+msgstr "pv"
#: scfuncs.src
msgctxt ""
@@ -8698,7 +8698,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The present value. The current value of the investment."
-msgstr ""
+msgstr "Současná hodnota investice."
#: scfuncs.src
msgctxt ""
@@ -8707,7 +8707,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "FV"
-msgstr ""
+msgstr "FV"
#: scfuncs.src
msgctxt ""
@@ -8716,7 +8716,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "The future value of the investment."
-msgstr ""
+msgstr "Budoucí hodnota investice."
#: scfuncs.src
msgctxt ""
@@ -9670,7 +9670,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Totals the arguments that meet the condition."
-msgstr ""
+msgstr "Sečte argumenty, které vyhovují podmínce."
#: scfuncs.src
msgctxt ""
@@ -11446,6 +11446,8 @@ msgid ""
"Rounds a number away from zero to the nearest multiple of significance.\n"
"This function exists for interoperability with Microsoft Excel 2007 or older versions."
msgstr ""
+"Zaokrouhlí číslo směrem od nuly na nejbližší násobek argumentu.\n"
+"Tato funkce existuje kvůli interoperabilitě s programem Microsoft Excel 2007 nebo jeho staršími verzemi."
#: scfuncs.src
msgctxt ""
@@ -16984,7 +16986,7 @@ msgctxt ""
"10\n"
"string.text"
msgid "Cumulative"
-msgstr ""
+msgstr "Kumulativní"
#: scfuncs.src
msgctxt ""
@@ -16993,7 +16995,7 @@ msgctxt ""
"11\n"
"string.text"
msgid "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function."
-msgstr ""
+msgstr "Kumulace. PRAVDA vypočítá distribuční funkci, NEPRAVDA pravděpodobnostní funkci."
#: scfuncs.src
msgctxt ""
@@ -23052,7 +23054,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Converts a value according to a conversion table in the configuration (main.xcd)."
-msgstr ""
+msgstr "Převede hodnotu podle převodní tabulky v nastavení (main.xcd)."
#: scfuncs.src
msgctxt ""
@@ -23061,7 +23063,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "value"
-msgstr ""
+msgstr "hodnota"
#: scfuncs.src
msgctxt ""
@@ -23070,7 +23072,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The value to be converted."
-msgstr ""
+msgstr "Hodnota, která se má převést."
#: scfuncs.src
msgctxt ""
@@ -23079,7 +23081,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "text"
-msgstr ""
+msgstr "text"
#: scfuncs.src
msgctxt ""
@@ -23088,7 +23090,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Unit from which something is converted, case-sensitive."
-msgstr ""
+msgstr "Jednotka, ze které se převádí (záleží na velikosti písmen)."
#: scfuncs.src
msgctxt ""
@@ -23097,7 +23099,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "text"
-msgstr ""
+msgstr "text"
#: scfuncs.src
msgctxt ""
@@ -23106,7 +23108,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "Unit into which something is converted, case-sensitive."
-msgstr ""
+msgstr "Jednotka, na kterou se převádí (záleží na velikosti písmen)."
#: scfuncs.src
msgctxt ""
@@ -24234,7 +24236,7 @@ msgctxt ""
"SCSTR_STDFILTER\n"
"string.text"
msgid "Standard Filter..."
-msgstr ""
+msgstr "Standardní filtr..."
#: scstring.src
msgctxt ""
@@ -25098,7 +25100,7 @@ msgctxt ""
"SCSTR_PRINTOPT_PAGES\n"
"string.text"
msgid "Pages"
-msgstr ""
+msgstr "Stránky"
#: scstring.src
msgctxt ""
@@ -25106,7 +25108,7 @@ msgctxt ""
"SCSTR_PRINTOPT_SUPPRESSEMPTY\n"
"string.text"
msgid "~Suppress output of empty pages"
-msgstr ""
+msgstr "~Potlačit výstup prázdných stránek"
#: scstring.src
msgctxt ""
@@ -25114,7 +25116,7 @@ msgctxt ""
"SCSTR_PRINTOPT_PRNTCONTENT\n"
"string.text"
msgid "Print content"
-msgstr ""
+msgstr "Vytisknout obsah"
#: scstring.src
msgctxt ""
@@ -25122,7 +25124,7 @@ msgctxt ""
"SCSTR_PRINTOPT_ALLSHEETS\n"
"string.text"
msgid "~All sheets"
-msgstr ""
+msgstr "~Všechny listy"
#: scstring.src
msgctxt ""
@@ -25130,7 +25132,7 @@ msgctxt ""
"SCSTR_PRINTOPT_SELECTEDSHEETS\n"
"string.text"
msgid "~Selected sheets"
-msgstr ""
+msgstr "Vy~brané listy"
#: scstring.src
msgctxt ""
@@ -25138,7 +25140,7 @@ msgctxt ""
"SCSTR_PRINTOPT_SELECTEDCELLS\n"
"string.text"
msgid "Selected cells"
-msgstr ""
+msgstr "Vybrané buňky"
#: scstring.src
msgctxt ""
@@ -25146,7 +25148,7 @@ msgctxt ""
"SCSTR_PRINTOPT_FROMWHICH\n"
"string.text"
msgid "From which print"
-msgstr ""
+msgstr "Rozsah tisku"
#: scstring.src
msgctxt ""
@@ -25154,7 +25156,7 @@ msgctxt ""
"SCSTR_PRINTOPT_ALLPAGES\n"
"string.text"
msgid "All ~pages"
-msgstr ""
+msgstr "Všechny ~stránky"
#: scstring.src
msgctxt ""
@@ -25162,7 +25164,7 @@ msgctxt ""
"SCSTR_PRINTOPT_PAGES_\n"
"string.text"
msgid "Pa~ges"
-msgstr ""
+msgstr "Strá~nky"
#: scstring.src
msgctxt ""
@@ -25170,7 +25172,7 @@ msgctxt ""
"SCSTR_PRINTOPT_PRODNAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: scstring.src
msgctxt ""
@@ -25539,7 +25541,7 @@ msgctxt ""
"SCSTR_CONDITION\n"
"string.text"
msgid "Condition "
-msgstr ""
+msgstr "Podmínka "
#: toolbox.src
msgctxt ""
diff --git a/source/cs/sc/source/ui/styleui.po b/source/cs/sc/source/ui/styleui.po
index 6af502b71e4..6a952e06a10 100644
--- a/source/cs/sc/source/ui/styleui.po
+++ b/source/cs/sc/source/ui/styleui.po
@@ -4,7 +4,7 @@ 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-07-04 19:01+0000\n"
+"PO-Revision-Date: 2017-02-18 14:58+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467658891.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487429929.000000\n"
#: scstyles.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Všechny styly"
#: scstyles.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Skryté styly"
#: scstyles.src
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Použité styly"
#: scstyles.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Vlastní styly"
#: scstyles.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Všechny styly"
#: scstyles.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Skryté styly"
#: scstyles.src
msgctxt ""
@@ -77,4 +77,4 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Vlastní styly"
diff --git a/source/cs/sc/uiconfig/scalc/ui.po b/source/cs/sc/uiconfig/scalc/ui.po
index 28357704f4a..e3af64e2c9b 100644
--- a/source/cs/sc/uiconfig/scalc/ui.po
+++ b/source/cs/sc/uiconfig/scalc/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-20 21:39+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 21:31+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476999591.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487539871.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to:"
-msgstr ""
+msgstr "Kopírovat výsledky do:"
#: advancedfilterdialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to:"
-msgstr ""
+msgstr "Kopírovat výsledky do:"
#: advancedfilterdialog.ui
msgctxt ""
@@ -432,6 +432,9 @@ msgid ""
"\n"
"Select 'Protect Sheet' from the 'Tools' menu."
msgstr ""
+"Uzamčení buňky se uplatní, pouze je-li aktivní uzamčení příslušného listu.\n"
+"\n"
+"Vyberte položku 'Uzamknout list' z nabídky 'Nástroje'."
#: cellprotectionpage.ui
msgctxt ""
@@ -719,7 +722,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "All Cells"
-msgstr ""
+msgstr "Všechny buňky"
#: conditionalentry.ui
msgctxt ""
@@ -728,7 +731,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Cell value is"
-msgstr ""
+msgstr "Hodnota buňky je"
#: conditionalentry.ui
msgctxt ""
@@ -737,7 +740,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Formula is"
-msgstr ""
+msgstr "Vzorec je"
#: conditionalentry.ui
msgctxt ""
@@ -746,7 +749,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Date is"
-msgstr ""
+msgstr "Datum je"
#: conditionalentry.ui
msgctxt ""
@@ -755,7 +758,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Style:"
-msgstr ""
+msgstr "Použít styl:"
#: conditionalentry.ui
msgctxt ""
@@ -764,7 +767,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "New Style..."
-msgstr ""
+msgstr "Nový styl..."
#: conditionalentry.ui
msgctxt ""
@@ -773,7 +776,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enter a value:"
-msgstr ""
+msgstr "Zadejte hodnotu:"
#: conditionalentry.ui
msgctxt ""
@@ -782,7 +785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "More Options..."
-msgstr ""
+msgstr "Další možnosti..."
#: conditionalentry.ui
msgctxt ""
@@ -791,7 +794,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaticky"
#: conditionalentry.ui
msgctxt ""
@@ -800,7 +803,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -809,7 +812,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Max"
#: conditionalentry.ui
msgctxt ""
@@ -818,7 +821,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Percentil"
#: conditionalentry.ui
msgctxt ""
@@ -827,7 +830,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: conditionalentry.ui
msgctxt ""
@@ -836,7 +839,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Procento"
#: conditionalentry.ui
msgctxt ""
@@ -845,7 +848,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Vzorec"
#: conditionalentry.ui
msgctxt ""
@@ -854,7 +857,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaticky"
#: conditionalentry.ui
msgctxt ""
@@ -863,7 +866,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -872,7 +875,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Max"
#: conditionalentry.ui
msgctxt ""
@@ -881,7 +884,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Percentil"
#: conditionalentry.ui
msgctxt ""
@@ -890,7 +893,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: conditionalentry.ui
msgctxt ""
@@ -899,7 +902,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Procento"
#: conditionalentry.ui
msgctxt ""
@@ -908,7 +911,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Vzorec"
#: conditionalentry.ui
msgctxt ""
@@ -917,7 +920,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaticky"
#: conditionalentry.ui
msgctxt ""
@@ -926,7 +929,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: conditionalentry.ui
msgctxt ""
@@ -935,7 +938,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Max"
-msgstr ""
+msgstr "Max"
#: conditionalentry.ui
msgctxt ""
@@ -944,7 +947,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Percentil"
#: conditionalentry.ui
msgctxt ""
@@ -953,7 +956,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: conditionalentry.ui
msgctxt ""
@@ -962,7 +965,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Procento"
#: conditionalentry.ui
msgctxt ""
@@ -971,7 +974,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Vzorec"
#: conditionalentry.ui
msgctxt ""
@@ -980,7 +983,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Příklad"
#: conditionalentry.ui
msgctxt ""
@@ -989,7 +992,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "equal to"
-msgstr ""
+msgstr "je rovno"
#: conditionalentry.ui
msgctxt ""
@@ -998,7 +1001,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "less than"
-msgstr ""
+msgstr "je menší než"
#: conditionalentry.ui
msgctxt ""
@@ -1007,7 +1010,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "greater than"
-msgstr ""
+msgstr "je větší než"
#: conditionalentry.ui
msgctxt ""
@@ -1016,7 +1019,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "less than or equal to"
-msgstr ""
+msgstr "je menší nebo rovno"
#: conditionalentry.ui
msgctxt ""
@@ -1025,7 +1028,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "greater than or equal to"
-msgstr ""
+msgstr "je větší nebo rovno"
#: conditionalentry.ui
msgctxt ""
@@ -1034,7 +1037,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "not equal to"
-msgstr ""
+msgstr "není rovno"
#: conditionalentry.ui
msgctxt ""
@@ -1043,7 +1046,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "between"
-msgstr ""
+msgstr "leží mezi"
#: conditionalentry.ui
msgctxt ""
@@ -1052,7 +1055,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "not between"
-msgstr ""
+msgstr "není mezi"
#: conditionalentry.ui
msgctxt ""
@@ -1061,7 +1064,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "duplicate"
-msgstr ""
+msgstr "duplikát"
#: conditionalentry.ui
msgctxt ""
@@ -1070,7 +1073,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "not duplicate"
-msgstr ""
+msgstr "není duplikát"
#: conditionalentry.ui
msgctxt ""
@@ -1079,7 +1082,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "top 10 elements"
-msgstr ""
+msgstr "horních 10 prvků"
#: conditionalentry.ui
msgctxt ""
@@ -1088,7 +1091,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "bottom 10 elements"
-msgstr ""
+msgstr "dolních 10 prvků"
#: conditionalentry.ui
msgctxt ""
@@ -1097,7 +1100,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "top 10 percent"
-msgstr ""
+msgstr "horních 10 procent"
#: conditionalentry.ui
msgctxt ""
@@ -1106,7 +1109,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "bottom 10 percent"
-msgstr ""
+msgstr "dolních 10 procent"
#: conditionalentry.ui
msgctxt ""
@@ -1115,7 +1118,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "above average"
-msgstr ""
+msgstr "nadprůměrná"
#: conditionalentry.ui
msgctxt ""
@@ -1124,7 +1127,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "below average"
-msgstr ""
+msgstr "podprůměrná"
#: conditionalentry.ui
msgctxt ""
@@ -1133,7 +1136,7 @@ msgctxt ""
"16\n"
"stringlist.text"
msgid "above or equal average"
-msgstr ""
+msgstr "nadprůměrná nebo rovna průměru"
#: conditionalentry.ui
msgctxt ""
@@ -1142,7 +1145,7 @@ msgctxt ""
"17\n"
"stringlist.text"
msgid "below or equal average"
-msgstr ""
+msgstr "podprůměrná nebo rovna průměru"
#: conditionalentry.ui
msgctxt ""
@@ -1151,7 +1154,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid "Error"
-msgstr ""
+msgstr "Chyba"
#: conditionalentry.ui
msgctxt ""
@@ -1160,7 +1163,7 @@ msgctxt ""
"19\n"
"stringlist.text"
msgid "No Error"
-msgstr ""
+msgstr "Není chyba"
#: conditionalentry.ui
msgctxt ""
@@ -1169,7 +1172,7 @@ msgctxt ""
"20\n"
"stringlist.text"
msgid "Begins with"
-msgstr ""
+msgstr "Začíná na"
#: conditionalentry.ui
msgctxt ""
@@ -1178,7 +1181,7 @@ msgctxt ""
"21\n"
"stringlist.text"
msgid "Ends with"
-msgstr ""
+msgstr "Končí na"
#: conditionalentry.ui
msgctxt ""
@@ -1187,7 +1190,7 @@ msgctxt ""
"22\n"
"stringlist.text"
msgid "Contains"
-msgstr ""
+msgstr "Obsahuje"
#: conditionalentry.ui
msgctxt ""
@@ -1196,7 +1199,7 @@ msgctxt ""
"23\n"
"stringlist.text"
msgid "Not Contains"
-msgstr ""
+msgstr "Neobsahuje"
#: conditionalentry.ui
msgctxt ""
@@ -1205,7 +1208,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Today"
-msgstr ""
+msgstr "Dnes"
#: conditionalentry.ui
msgctxt ""
@@ -1214,7 +1217,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Yesterday"
-msgstr ""
+msgstr "Včera"
#: conditionalentry.ui
msgctxt ""
@@ -1223,7 +1226,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Tomorrow"
-msgstr ""
+msgstr "Zítra"
#: conditionalentry.ui
msgctxt ""
@@ -1232,7 +1235,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Last 7 days"
-msgstr ""
+msgstr "Posledních 7 dní"
#: conditionalentry.ui
msgctxt ""
@@ -1241,7 +1244,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "This week"
-msgstr ""
+msgstr "Tento týden"
#: conditionalentry.ui
msgctxt ""
@@ -1250,7 +1253,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Last week"
-msgstr ""
+msgstr "Minulý týden"
#: conditionalentry.ui
msgctxt ""
@@ -1259,7 +1262,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Next week"
-msgstr ""
+msgstr "Příští týden"
#: conditionalentry.ui
msgctxt ""
@@ -1268,7 +1271,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "This month"
-msgstr ""
+msgstr "Tento měsíc"
#: conditionalentry.ui
msgctxt ""
@@ -1277,7 +1280,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Last month"
-msgstr ""
+msgstr "Minulý měsíc"
#: conditionalentry.ui
msgctxt ""
@@ -1286,7 +1289,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Next month"
-msgstr ""
+msgstr "Příští měsíc"
#: conditionalentry.ui
msgctxt ""
@@ -1295,7 +1298,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "This year"
-msgstr ""
+msgstr "Tento rok"
#: conditionalentry.ui
msgctxt ""
@@ -1304,7 +1307,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Last year"
-msgstr ""
+msgstr "Minulý rok"
#: conditionalentry.ui
msgctxt ""
@@ -1313,7 +1316,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Next year"
-msgstr ""
+msgstr "Příští rok"
#: conditionalentry.ui
msgctxt ""
@@ -1322,7 +1325,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color Scale (2 Entries)"
-msgstr ""
+msgstr "Dvoubarevná škála"
#: conditionalentry.ui
msgctxt ""
@@ -1331,7 +1334,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Color Scale (3 Entries)"
-msgstr ""
+msgstr "Tříbarevná škála"
#: conditionalentry.ui
msgctxt ""
@@ -1340,7 +1343,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Data Bar"
-msgstr ""
+msgstr "Datový pruh"
#: conditionalentry.ui
msgctxt ""
@@ -1349,7 +1352,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Icon Set"
-msgstr ""
+msgstr "Sada ikon"
#: conditionalentry.ui
msgctxt ""
@@ -1358,7 +1361,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "3 Arrows"
-msgstr ""
+msgstr "3 šipky"
#: conditionalentry.ui
msgctxt ""
@@ -1367,7 +1370,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "3 Gray Arrows"
-msgstr ""
+msgstr "3 šedé šipky"
#: conditionalentry.ui
msgctxt ""
@@ -1376,7 +1379,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "3 Flags"
-msgstr ""
+msgstr "3 vlajky"
#: conditionalentry.ui
msgctxt ""
@@ -1385,7 +1388,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "3 Traffic Lights 1"
-msgstr ""
+msgstr "3 semafory 1"
#: conditionalentry.ui
msgctxt ""
@@ -1394,7 +1397,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "3 Traffic Lights 2"
-msgstr ""
+msgstr "3 semafory 2"
#: conditionalentry.ui
msgctxt ""
@@ -1403,7 +1406,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "3 Signs"
-msgstr ""
+msgstr "3 značky"
#: conditionalentry.ui
msgctxt ""
@@ -1412,7 +1415,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "3 Symbols 1"
-msgstr ""
+msgstr "3 symboly 1"
#: conditionalentry.ui
msgctxt ""
@@ -1421,7 +1424,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "3 Symbols 2"
-msgstr ""
+msgstr "3 symboly 2"
#: conditionalentry.ui
msgctxt ""
@@ -1430,7 +1433,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "3 Smileys"
-msgstr ""
+msgstr "3 emotikony"
#: conditionalentry.ui
msgctxt ""
@@ -1439,7 +1442,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "3 Stars"
-msgstr ""
+msgstr "3 hvězdy"
#: conditionalentry.ui
msgctxt ""
@@ -1448,7 +1451,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "3 Triangles"
-msgstr ""
+msgstr "3 trojúhelníky"
#: conditionalentry.ui
msgctxt ""
@@ -1457,7 +1460,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "3 Colored Smileys"
-msgstr ""
+msgstr "3 barevné emotikony"
#: conditionalentry.ui
msgctxt ""
@@ -1466,7 +1469,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "4 Arrows"
-msgstr ""
+msgstr "4 šipky"
#: conditionalentry.ui
msgctxt ""
@@ -1475,7 +1478,7 @@ msgctxt ""
"13\n"
"stringlist.text"
msgid "4 Gray Arrows"
-msgstr ""
+msgstr "4 šedé šipky"
#: conditionalentry.ui
msgctxt ""
@@ -1484,7 +1487,7 @@ msgctxt ""
"14\n"
"stringlist.text"
msgid "4 Circles Red to Black"
-msgstr ""
+msgstr "4 kruhy od červeného po černý"
#: conditionalentry.ui
msgctxt ""
@@ -1493,7 +1496,7 @@ msgctxt ""
"15\n"
"stringlist.text"
msgid "4 Ratings"
-msgstr ""
+msgstr "4 hodnocení"
#: conditionalentry.ui
msgctxt ""
@@ -1502,7 +1505,7 @@ msgctxt ""
"16\n"
"stringlist.text"
msgid "4 Traffic Lights"
-msgstr ""
+msgstr "4 semafory"
#: conditionalentry.ui
msgctxt ""
@@ -1511,7 +1514,7 @@ msgctxt ""
"17\n"
"stringlist.text"
msgid "5 Arrows"
-msgstr ""
+msgstr "5 šipek"
#: conditionalentry.ui
msgctxt ""
@@ -1520,7 +1523,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid "5 Gray Arrows"
-msgstr ""
+msgstr "5 šedých šipek"
#: conditionalentry.ui
msgctxt ""
@@ -1529,7 +1532,7 @@ msgctxt ""
"19\n"
"stringlist.text"
msgid "5 Ratings"
-msgstr ""
+msgstr "5 hodnocení"
#: conditionalentry.ui
msgctxt ""
@@ -1538,7 +1541,7 @@ msgctxt ""
"20\n"
"stringlist.text"
msgid "5 Quarters"
-msgstr ""
+msgstr "5 čtvrtin"
#: conditionalentry.ui
msgctxt ""
@@ -1547,7 +1550,7 @@ msgctxt ""
"21\n"
"stringlist.text"
msgid "5 Boxes"
-msgstr ""
+msgstr "5 kostek"
#: conditionalformatdialog.ui
msgctxt ""
@@ -1592,7 +1595,7 @@ msgctxt ""
"label\n"
"string.text"
msgid " >= "
-msgstr ""
+msgstr " >= "
#: conditionaliconset.ui
msgctxt ""
@@ -1601,7 +1604,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: conditionaliconset.ui
msgctxt ""
@@ -1610,7 +1613,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Percent"
-msgstr ""
+msgstr "Procento"
#: conditionaliconset.ui
msgctxt ""
@@ -1619,7 +1622,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Percentile"
-msgstr ""
+msgstr "Percentil"
#: conditionaliconset.ui
msgctxt ""
@@ -1628,7 +1631,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Formula"
-msgstr ""
+msgstr "Vzorec"
#: conflictsdialog.ui
msgctxt ""
@@ -3869,7 +3872,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "No Border"
-msgstr ""
+msgstr "Bez ohraničení"
#: floatingborderstyle.ui
msgctxt ""
@@ -3878,7 +3881,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "All Borders"
-msgstr ""
+msgstr "Všechna ohraničení"
#: floatingborderstyle.ui
msgctxt ""
@@ -3887,7 +3890,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outside Borders"
-msgstr ""
+msgstr "Vnější ohraničení"
#: floatingborderstyle.ui
msgctxt ""
@@ -3896,7 +3899,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Thick Box Border"
-msgstr ""
+msgstr "Tlusté vnější ohraničení"
#: floatingborderstyle.ui
msgctxt ""
@@ -3905,7 +3908,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Thick Bottom Border"
-msgstr ""
+msgstr "Tlusté ohraničení dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -3914,7 +3917,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Double Bottom Border"
-msgstr ""
+msgstr "Dvojité ohraničení dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -3923,7 +3926,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Thick Bottom Borders"
-msgstr ""
+msgstr "Ohraničení nahoře a tlusté dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -3932,7 +3935,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Double Bottom Borders"
-msgstr ""
+msgstr "Ohraničení nahoře a dvojité dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -3941,7 +3944,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Left Border"
-msgstr ""
+msgstr "Ohraničení vlevo"
#: floatingborderstyle.ui
msgctxt ""
@@ -3950,7 +3953,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Right Border"
-msgstr ""
+msgstr "Ohraničení vpravo"
#: floatingborderstyle.ui
msgctxt ""
@@ -3959,7 +3962,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top Border"
-msgstr ""
+msgstr "Ohraničení nahoře"
#: floatingborderstyle.ui
msgctxt ""
@@ -3968,7 +3971,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bottom Border"
-msgstr ""
+msgstr "Ohraničení dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -3977,7 +3980,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Diagonal Up Border"
-msgstr ""
+msgstr "Ohraničení úhlopříčně nahoru"
#: floatingborderstyle.ui
msgctxt ""
@@ -3986,7 +3989,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Diagonal Down Border"
-msgstr ""
+msgstr "Ohraničení úhlopříčně dolů"
#: floatingborderstyle.ui
msgctxt ""
@@ -3995,7 +3998,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Top and Bottom Borders"
-msgstr ""
+msgstr "Ohraničení nahoře a dole"
#: floatingborderstyle.ui
msgctxt ""
@@ -4004,7 +4007,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Left and Right Borders"
-msgstr ""
+msgstr "Ohraničení vlevo a vpravo"
#: floatinglinestyle.ui
msgctxt ""
@@ -4013,7 +4016,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options..."
-msgstr ""
+msgstr "_Další možnosti..."
#: footerdialog.ui
msgctxt ""
@@ -4229,7 +4232,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Function into calculation sheet"
-msgstr ""
+msgstr "Vložit funkci do listu s výpočty"
#: functionpanel.ui
msgctxt ""
@@ -4238,7 +4241,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Last Used"
-msgstr ""
+msgstr "Naposledy použité"
#: functionpanel.ui
msgctxt ""
@@ -4247,7 +4250,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "All"
-msgstr ""
+msgstr "Všechny"
#: functionpanel.ui
msgctxt ""
@@ -4256,7 +4259,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Database"
-msgstr ""
+msgstr "Databáze"
#: functionpanel.ui
msgctxt ""
@@ -4265,7 +4268,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Date&Time"
-msgstr ""
+msgstr "Datum a čas"
#: functionpanel.ui
msgctxt ""
@@ -4274,7 +4277,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Financial"
-msgstr ""
+msgstr "Finanční"
#: functionpanel.ui
msgctxt ""
@@ -4283,7 +4286,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Information"
-msgstr ""
+msgstr "Informace"
#: functionpanel.ui
msgctxt ""
@@ -4292,7 +4295,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Logical"
-msgstr ""
+msgstr "Logické"
#: functionpanel.ui
msgctxt ""
@@ -4301,7 +4304,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Mathematical"
-msgstr ""
+msgstr "Matematické"
#: functionpanel.ui
msgctxt ""
@@ -4310,7 +4313,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Array"
-msgstr ""
+msgstr "Matice"
#: functionpanel.ui
msgctxt ""
@@ -4319,7 +4322,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Statistical"
-msgstr ""
+msgstr "Statistické"
#: functionpanel.ui
msgctxt ""
@@ -4328,7 +4331,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Sešit"
#: functionpanel.ui
msgctxt ""
@@ -4337,7 +4340,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: functionpanel.ui
msgctxt ""
@@ -4346,7 +4349,7 @@ msgctxt ""
"12\n"
"stringlist.text"
msgid "Add-in"
-msgstr ""
+msgstr "Doplňky"
#: functionpanel.ui
msgctxt ""
@@ -4355,7 +4358,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "label"
-msgstr ""
+msgstr "popisek"
#: goalseekdlg.ui
msgctxt ""
@@ -5309,7 +5312,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Merge Cells"
-msgstr ""
+msgstr "Sloučit buňky"
#: mergecellsdialog.ui
msgctxt ""
@@ -5318,7 +5321,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Some cells are not empty."
-msgstr ""
+msgstr "Některé buňky nejsou prázdné."
#: mergecellsdialog.ui
msgctxt ""
@@ -5327,7 +5330,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move the contents of the hidden cells into the first cell"
-msgstr ""
+msgstr "Přesunout obsah skrytých buněk do první buňky"
#: mergecellsdialog.ui
msgctxt ""
@@ -5336,7 +5339,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Keep the contents of the hidden cells"
-msgstr ""
+msgstr "Zachovat obsah skrytých buněk"
#: mergecellsdialog.ui
msgctxt ""
@@ -5345,7 +5348,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Empty the contents of the hidden cells"
-msgstr ""
+msgstr "Odstranit obsah skrytých buněk"
#: movecopysheet.ui
msgctxt ""
@@ -5642,7 +5645,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column:"
-msgstr ""
+msgstr "Sloupec:"
#: navigatorpanel.ui
msgctxt ""
@@ -5651,7 +5654,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row:"
-msgstr ""
+msgstr "Řádek:"
#: navigatorpanel.ui
msgctxt ""
@@ -5660,7 +5663,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Column"
-msgstr ""
+msgstr "Sloupec"
#: navigatorpanel.ui
msgctxt ""
@@ -5669,7 +5672,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Row"
-msgstr ""
+msgstr "Řádek"
#: navigatorpanel.ui
msgctxt ""
@@ -5678,7 +5681,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Data Range"
-msgstr ""
+msgstr "Oblast dat"
#: navigatorpanel.ui
msgctxt ""
@@ -5687,7 +5690,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Začátek"
#: navigatorpanel.ui
msgctxt ""
@@ -5696,7 +5699,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "End"
-msgstr ""
+msgstr "Konec"
#: navigatorpanel.ui
msgctxt ""
@@ -5705,7 +5708,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Contents"
-msgstr ""
+msgstr "Obsah"
#: navigatorpanel.ui
msgctxt ""
@@ -5714,7 +5717,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle"
-msgstr ""
+msgstr "Přepnout"
#: navigatorpanel.ui
msgctxt ""
@@ -5723,7 +5726,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Scenarios"
-msgstr ""
+msgstr "Scénáře"
#: navigatorpanel.ui
msgctxt ""
@@ -5732,7 +5735,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Způsob přetáhnutí"
#: navigatorpanel.ui
msgctxt ""
@@ -5741,7 +5744,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: navigatorpanel.ui
msgctxt ""
@@ -5750,7 +5753,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Aktivní okno"
#: nosolutiondialog.ui
msgctxt ""
@@ -5777,7 +5780,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Soubor"
#: notebookbar.ui
msgctxt ""
@@ -5786,7 +5789,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Štěteček formátu"
#: notebookbar.ui
msgctxt ""
@@ -5795,7 +5798,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the borders of the selected cells."
-msgstr ""
+msgstr "Určete ohraničení vybraných buněk."
#: notebookbar.ui
msgctxt ""
@@ -5804,7 +5807,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Vertical Alignment"
-msgstr ""
+msgstr "Svislé zarovnání"
#: notebookbar.ui
msgctxt ""
@@ -5813,7 +5816,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Vodorovné zarovnání"
#: notebookbar.ui
msgctxt ""
@@ -5822,7 +5825,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Odsazení"
#: notebookbar.ui
msgctxt ""
@@ -5831,7 +5834,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Zvětšit odsazení"
#: notebookbar.ui
msgctxt ""
@@ -5840,7 +5843,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Zmenšit odsazení"
#: notebookbar.ui
msgctxt ""
@@ -5849,7 +5852,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Domů"
#: notebookbar.ui
msgctxt ""
@@ -5858,7 +5861,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Vložit zvuk nebo video"
#: notebookbar.ui
msgctxt ""
@@ -5867,7 +5870,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Symbol"
#: notebookbar.ui
msgctxt ""
@@ -5876,7 +5879,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Vložit"
#: notebookbar.ui
msgctxt ""
@@ -5885,7 +5888,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Toggle Grid Lines"
-msgstr ""
+msgstr "Přepnout mřížku"
#: notebookbar.ui
msgctxt ""
@@ -5894,7 +5897,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page Layout"
-msgstr ""
+msgstr "Rozvržení stránky"
#: notebookbar.ui
msgctxt ""
@@ -5903,7 +5906,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data"
-msgstr ""
+msgstr "Data"
#: notebookbar.ui
msgctxt ""
@@ -5912,7 +5915,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Automatická kontrola pravopisu"
#: notebookbar.ui
msgctxt ""
@@ -5921,7 +5924,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Revize"
#: notebookbar.ui
msgctxt ""
@@ -5930,7 +5933,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Toggle Grid Lines"
-msgstr ""
+msgstr "Přepnout mřížku"
#: notebookbar.ui
msgctxt ""
@@ -5939,7 +5942,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Zobrazit"
#: notebookbar.ui
msgctxt ""
@@ -5948,7 +5951,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Obrázek"
#: notebookbar_groups.ui
msgctxt ""
@@ -5957,7 +5960,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hypertextový odkaz"
#: notebookbar_groups.ui
msgctxt ""
@@ -5966,7 +5969,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Poznámka pod čarou"
#: notebookbar_groups.ui
msgctxt ""
@@ -5975,7 +5978,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Vysvětlivka"
#: notebookbar_groups.ui
msgctxt ""
@@ -5984,7 +5987,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Záložka"
#: notebookbar_groups.ui
msgctxt ""
@@ -5993,7 +5996,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Křížový odkaz"
#: notebookbar_groups.ui
msgctxt ""
@@ -6002,7 +6005,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: notebookbar_groups.ui
msgctxt ""
@@ -6011,7 +6014,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Zvýraznění 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6020,7 +6023,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Zvýraznění 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6029,7 +6032,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Zvýraznění 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6038,7 +6041,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Nadpis 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6047,7 +6050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Nadpis 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6056,7 +6059,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Good"
-msgstr ""
+msgstr "Dobré"
#: notebookbar_groups.ui
msgctxt ""
@@ -6065,7 +6068,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Neutral"
-msgstr ""
+msgstr "Neutrální"
#: notebookbar_groups.ui
msgctxt ""
@@ -6074,7 +6077,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bad"
-msgstr ""
+msgstr "Špatné"
#: notebookbar_groups.ui
msgctxt ""
@@ -6083,7 +6086,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Warning"
-msgstr ""
+msgstr "Upozornění"
#: notebookbar_groups.ui
msgctxt ""
@@ -6092,7 +6095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error"
-msgstr ""
+msgstr "Chyba"
#: notebookbar_groups.ui
msgctxt ""
@@ -6101,7 +6104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Note"
-msgstr ""
+msgstr "Poznámka"
#: notebookbar_groups.ui
msgctxt ""
@@ -6110,7 +6113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Poznámka pod čarou"
#: notebookbar_groups.ui
msgctxt ""
@@ -6119,7 +6122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Žádný"
#: notebookbar_groups.ui
msgctxt ""
@@ -6128,7 +6131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: notebookbar_groups.ui
msgctxt ""
@@ -6137,7 +6140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Styl 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -6146,7 +6149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Styl 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -6155,7 +6158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Styl 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -6164,7 +6167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Styl 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -6173,7 +6176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Vložit řádky nad"
#: notebookbar_groups.ui
msgctxt ""
@@ -6182,7 +6185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Vložit řádky pod"
#: notebookbar_groups.ui
msgctxt ""
@@ -6191,7 +6194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Smazat řádky"
#: notebookbar_groups.ui
msgctxt ""
@@ -6200,7 +6203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Vybrat řádky"
#: notebookbar_groups.ui
msgctxt ""
@@ -6209,7 +6212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Výška řádku..."
#: notebookbar_groups.ui
msgctxt ""
@@ -6218,7 +6221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Optimální výška řádku"
#: notebookbar_groups.ui
msgctxt ""
@@ -6227,7 +6230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Rovnoměrně rozmístit řádky"
#: notebookbar_groups.ui
msgctxt ""
@@ -6236,7 +6239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Soubor"
#: notebookbar_groups.ui
msgctxt ""
@@ -6245,7 +6248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Schránka"
#: notebookbar_groups.ui
msgctxt ""
@@ -6254,10 +6257,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -6267,7 +6269,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -6283,7 +6284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Vlevo"
#: notebookbar_groups.ui
msgctxt ""
@@ -6292,7 +6293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Na střed"
#: notebookbar_groups.ui
msgctxt ""
@@ -6301,7 +6302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Vpravo"
#: notebookbar_groups.ui
msgctxt ""
@@ -6310,7 +6311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: notebookbar_groups.ui
msgctxt ""
@@ -6319,7 +6320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row"
-msgstr ""
+msgstr "Řádek"
#: notebookbar_groups.ui
msgctxt ""
@@ -6328,7 +6329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column"
-msgstr ""
+msgstr "Sloupec"
#: notebookbar_groups.ui
msgctxt ""
@@ -6337,7 +6338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Merge"
-msgstr ""
+msgstr "Sloučit"
#: notebookbar_groups.ui
msgctxt ""
@@ -6346,7 +6347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Split"
-msgstr ""
+msgstr "Rozdělit"
#: notebookbar_groups.ui
msgctxt ""
@@ -6355,7 +6356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Conditional"
-msgstr ""
+msgstr "Podmíněné"
#: notebookbar_groups.ui
msgctxt ""
@@ -6364,7 +6365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Top"
-msgstr ""
+msgstr "Nahoru"
#: notebookbar_groups.ui
msgctxt ""
@@ -6373,7 +6374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center"
-msgstr ""
+msgstr "Na střed"
#: notebookbar_groups.ui
msgctxt ""
@@ -6382,7 +6383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bottom"
-msgstr ""
+msgstr "Dolů"
#: notebookbar_groups.ui
msgctxt ""
@@ -6391,7 +6392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Sešit"
#: notebookbar_groups.ui
msgctxt ""
@@ -6400,7 +6401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Tvary"
#: notebookbar_groups.ui
msgctxt ""
@@ -6409,7 +6410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Odkazy"
#: notebookbar_groups.ui
msgctxt ""
@@ -6418,7 +6419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Vložit"
#: notebookbar_groups.ui
msgctxt ""
@@ -6427,7 +6428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#: notebookbar_groups.ui
msgctxt ""
@@ -6436,7 +6437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Obnovit"
#: notebookbar_groups.ui
msgctxt ""
@@ -6445,7 +6446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Obtékání textu"
#: notebookbar_groups.ui
msgctxt ""
@@ -6454,7 +6455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Uzamknout"
#: notebookbar_groups.ui
msgctxt ""
@@ -6463,7 +6464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Obrázek"
#: notebookbar_groups.ui
msgctxt ""
@@ -6472,7 +6473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Žádné"
#: notebookbar_groups.ui
msgctxt ""
@@ -6481,7 +6482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Optimální"
#: notebookbar_groups.ui
msgctxt ""
@@ -6490,7 +6491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Rovnoběžně"
#: notebookbar_groups.ui
msgctxt ""
@@ -6499,7 +6500,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Před"
#: notebookbar_groups.ui
msgctxt ""
@@ -6508,7 +6509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Za"
#: notebookbar_groups.ui
msgctxt ""
@@ -6517,7 +6518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Přes"
#: notebookbar_groups.ui
msgctxt ""
@@ -6526,7 +6527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Obrys"
#: notebookbar_groups.ui
msgctxt ""
@@ -6535,7 +6536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Upravit obrys"
#: optcalculatepage.ui
msgctxt ""
@@ -6553,7 +6554,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Rozlišování velikosti písmen zakažte, požadujete-li interoperabilitu s programem Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6580,7 +6581,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enable this for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Toto povolte, požadujete-li interoperabilitu s programem Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6598,7 +6599,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enable wildcards for interoperability with Microsoft Excel"
-msgstr ""
+msgstr "Zástupné znaky povolte, požadujete-li interoperabilitu s programem Microsoft Excel"
#: optcalculatepage.ui
msgctxt ""
@@ -6706,7 +6707,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Value 0 corresponds to 12/30/1899"
-msgstr ""
+msgstr "Hodnota 0 odpovídá 12/30/1899"
#: optcalculatepage.ui
msgctxt ""
@@ -6724,7 +6725,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Value 0 corresponds to 01/01/1900"
-msgstr ""
+msgstr "Hodnota 0 odpovídá 01/01/1900"
#: optcalculatepage.ui
msgctxt ""
@@ -6742,7 +6743,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "0 corresponds to 01/01/1904"
-msgstr ""
+msgstr "Hodnota 0 odpovídá 01/01/1904"
#: optcalculatepage.ui
msgctxt ""
@@ -9172,7 +9173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "skipped $1 ..."
-msgstr ""
+msgstr "vynecháno $1 ..."
#: selectdatasource.ui
msgctxt ""
@@ -9802,7 +9803,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Left Indent"
-msgstr ""
+msgstr "Odsazení zleva"
#: sidebaralignment.ui
msgctxt ""
@@ -9865,7 +9866,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Text Orientation"
-msgstr ""
+msgstr "Orientace textu"
#: sidebaralignment.ui
msgctxt ""
@@ -9955,7 +9956,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Style"
-msgstr ""
+msgstr "Styl čáry ohraničení"
#: sidebarcellappearance.ui
msgctxt ""
@@ -9982,7 +9983,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Border Line Color"
-msgstr ""
+msgstr "Barva čáry ohraničení"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10090,7 +10091,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorie"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10117,7 +10118,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Decimal Places"
-msgstr ""
+msgstr "Desetinná místa"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10126,7 +10127,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "_Místa jmenovatele:"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10135,7 +10136,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter the number of places for the denominator that you want to display."
-msgstr ""
+msgstr "Zadejte počet míst jmenovatele, která chcete zobrazit."
#: sidebarnumberformat.ui
msgctxt ""
@@ -10144,7 +10145,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Denominator Places"
-msgstr ""
+msgstr "Místa jmenovatele"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10171,7 +10172,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Leading Zeroes"
-msgstr ""
+msgstr "Úvodní nuly"
#: sidebarnumberformat.ui
msgctxt ""
@@ -10360,7 +10361,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "_Odkaz na buňku"
#: solverdlg.ui
msgctxt ""
@@ -10369,7 +10370,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Odkaz na buňku"
#: solverdlg.ui
msgctxt ""
@@ -10378,7 +10379,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Odkaz na buňku"
#: solverdlg.ui
msgctxt ""
@@ -10387,7 +10388,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Cell reference"
-msgstr ""
+msgstr "Odkaz na buňku"
#: solverdlg.ui
msgctxt ""
@@ -10441,7 +10442,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "O_perátor"
#: solverdlg.ui
msgctxt ""
@@ -10495,7 +10496,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operátor"
#: solverdlg.ui
msgctxt ""
@@ -10549,7 +10550,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operátor"
#: solverdlg.ui
msgctxt ""
@@ -10603,7 +10604,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator"
-msgstr ""
+msgstr "Operátor"
#: solverdlg.ui
msgctxt ""
@@ -10612,7 +10613,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Ho_dnota"
#: solverdlg.ui
msgctxt ""
@@ -10621,7 +10622,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: solverdlg.ui
msgctxt ""
@@ -10630,7 +10631,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: solverdlg.ui
msgctxt ""
@@ -10639,7 +10640,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value"
-msgstr ""
+msgstr "Hodnota"
#: solverdlg.ui
msgctxt ""
@@ -10900,7 +10901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Include comments-only boundary column(s)"
-msgstr ""
+msgstr "Zahrnout okrajové sloupce obsahující pouze komentáře"
#: sortoptionspage.ui
msgctxt ""
@@ -10918,7 +10919,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Kopírovat výsledky řazení do:"
#: sortoptionspage.ui
msgctxt ""
@@ -10927,7 +10928,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy sort results to:"
-msgstr ""
+msgstr "Kopírovat výsledky řazení do:"
#: sortoptionspage.ui
msgctxt ""
@@ -10945,7 +10946,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Custom sort order"
-msgstr ""
+msgstr "Vlastní pořadí řazení"
#: sortoptionspage.ui
msgctxt ""
@@ -11080,7 +11081,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 1"
-msgstr ""
+msgstr "Operátor 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11107,7 +11108,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 2"
-msgstr ""
+msgstr "Operátor 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11134,7 +11135,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 3"
-msgstr ""
+msgstr "Operátor 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11161,7 +11162,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Operator 4"
-msgstr ""
+msgstr "Operátor 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11206,7 +11207,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 1"
-msgstr ""
+msgstr "Název pole 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11215,7 +11216,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 2"
-msgstr ""
+msgstr "Název pole 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11224,7 +11225,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 3"
-msgstr ""
+msgstr "Název pole 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11233,7 +11234,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Field Name 4"
-msgstr ""
+msgstr "Název pole 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11332,7 +11333,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 1"
-msgstr ""
+msgstr "Podmínka 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11431,7 +11432,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 2"
-msgstr ""
+msgstr "Podmínka 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11530,7 +11531,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 3"
-msgstr ""
+msgstr "Podmínka 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11629,7 +11630,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Condition 4"
-msgstr ""
+msgstr "Podmínka 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11638,7 +11639,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 1"
-msgstr ""
+msgstr "Hodnota 1"
#: standardfilterdialog.ui
msgctxt ""
@@ -11647,7 +11648,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 2"
-msgstr ""
+msgstr "Hodnota 2"
#: standardfilterdialog.ui
msgctxt ""
@@ -11656,7 +11657,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 3"
-msgstr ""
+msgstr "Hodnota 3"
#: standardfilterdialog.ui
msgctxt ""
@@ -11665,7 +11666,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Value 4"
-msgstr ""
+msgstr "Hodnota 4"
#: standardfilterdialog.ui
msgctxt ""
@@ -11737,7 +11738,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Kopírovat výsledky do"
#: standardfilterdialog.ui
msgctxt ""
@@ -11746,7 +11747,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Copy results to"
-msgstr ""
+msgstr "Kopírovat výsledky do"
#: standardfilterdialog.ui
msgctxt ""
@@ -12196,7 +12197,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Other"
-msgstr ""
+msgstr "J_iný"
#: textimportcsv.ui
msgctxt ""
@@ -13033,7 +13034,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse to set source file."
-msgstr ""
+msgstr "Vyberte zdrojový soubor."
#: xmlsourcedialog.ui
msgctxt ""
diff --git a/source/cs/sd/source/core.po b/source/cs/sd/source/core.po
index f65ccc5f006..9988e2540dd 100644
--- a/source/cs/sd/source/core.po
+++ b/source/cs/sd/source/core.po
@@ -4,17 +4,17 @@ 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-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 19:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 13:20+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467659151.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487424044.000000\n"
#: glob.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_MASTERSLIDE_NAME\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Předloha snímku"
#: glob.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_MASTERPAGE_NAME\n"
"string.text"
msgid "Master Page"
-msgstr ""
+msgstr "Předloha stránky"
#: glob.src
msgctxt ""
@@ -677,7 +677,7 @@ msgctxt ""
"STR_SHRINK_FONT_SIZE\n"
"string.text"
msgid "Shrink font size"
-msgstr ""
+msgstr "Zmenšit velikost písma"
#: glob.src
msgctxt ""
@@ -685,4 +685,4 @@ msgctxt ""
"STR_GROW_FONT_SIZE\n"
"string.text"
msgid "Grow font size"
-msgstr ""
+msgstr "Zvětšit velikost písma"
diff --git a/source/cs/sd/source/ui/animations.po b/source/cs/sd/source/ui/animations.po
index 8536fa68215..f809e63c0c1 100644
--- a/source/cs/sd/source/ui/animations.po
+++ b/source/cs/sd/source/ui/animations.po
@@ -4,7 +4,7 @@ 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-07-31 16:20+0000\n"
+"PO-Revision-Date: 2017-02-18 13:24+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1469982034.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487424258.000000\n"
#: CustomAnimation.src
msgctxt ""
@@ -280,7 +280,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_DIRECTION_PROPERTY\n"
"string.text"
msgid "Direction:"
-msgstr ""
+msgstr "Směr:"
#: CustomAnimation.src
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_ZOOM_PROPERTY\n"
"string.text"
msgid "Zoom:"
-msgstr ""
+msgstr "Přiblížení:"
#: CustomAnimation.src
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SPOKES_PROPERTY\n"
"string.text"
msgid "Spokes:"
-msgstr ""
+msgstr "Paprsky:"
#: CustomAnimation.src
msgctxt ""
@@ -304,7 +304,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY\n"
"string.text"
msgid "First color:"
-msgstr ""
+msgstr "První barva:"
#: CustomAnimation.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY\n"
"string.text"
msgid "Second color:"
-msgstr ""
+msgstr "Druhá barva:"
#: CustomAnimation.src
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY\n"
"string.text"
msgid "Fill color:"
-msgstr ""
+msgstr "Barva výplně:"
#: CustomAnimation.src
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Styl:"
#: CustomAnimation.src
msgctxt ""
@@ -336,7 +336,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_PROPERTY\n"
"string.text"
msgid "Font:"
-msgstr ""
+msgstr "Písmo:"
#: CustomAnimation.src
msgctxt ""
@@ -344,7 +344,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY\n"
"string.text"
msgid "Font color:"
-msgstr ""
+msgstr "Barva písma:"
#: CustomAnimation.src
msgctxt ""
@@ -352,7 +352,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Styl:"
#: CustomAnimation.src
msgctxt ""
@@ -360,7 +360,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY\n"
"string.text"
msgid "Typeface:"
-msgstr ""
+msgstr "Řez:"
#: CustomAnimation.src
msgctxt ""
@@ -368,7 +368,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY\n"
"string.text"
msgid "Line color:"
-msgstr ""
+msgstr "Barva čáry:"
#: CustomAnimation.src
msgctxt ""
@@ -376,7 +376,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SIZE_PROPERTY\n"
"string.text"
msgid "Font size:"
-msgstr ""
+msgstr "Velikost písma:"
#: CustomAnimation.src
msgctxt ""
@@ -384,7 +384,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SCALE_PROPERTY\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Velikost:"
#: CustomAnimation.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_AMOUNT_PROPERTY\n"
"string.text"
msgid "Amount:"
-msgstr ""
+msgstr "Množství:"
#: CustomAnimation.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_COLOR_PROPERTY\n"
"string.text"
msgid "Color:"
-msgstr ""
+msgstr "Barva:"
#: CustomAnimation.src
msgctxt ""
diff --git a/source/cs/sd/source/ui/app.po b/source/cs/sd/source/ui/app.po
index cb3041e7164..20af5844ff8 100644
--- a/source/cs/sd/source/ui/app.po
+++ b/source/cs/sd/source/ui/app.po
@@ -4,7 +4,7 @@ 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-10-26 18:09+0000\n"
+"PO-Revision-Date: 2017-02-18 13:27+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1477505372.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487424456.000000\n"
#: popup.src
msgctxt ""
@@ -155,7 +155,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Všechny styly"
#: res_bmp.src
msgctxt ""
@@ -164,7 +164,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Skryté styly"
#: res_bmp.src
msgctxt ""
@@ -173,7 +173,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Použité styly"
#: res_bmp.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Vlastní styly"
#: res_bmp.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Všechny styly"
#: res_bmp.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Skryté styly"
#: sdstring.src
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"STR_PRESENTATIONS_STYLE_FAMILY\n"
"string.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Styly prezentace"
#: strings.src
msgctxt ""
@@ -2450,7 +2450,7 @@ msgctxt ""
"STR_CUSTOMANIMATIONPANE\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animace"
#: strings.src
msgctxt ""
@@ -2602,7 +2602,7 @@ msgctxt ""
"STR_OBJECTS_TREE\n"
"string.text"
msgid "Page Tree"
-msgstr ""
+msgstr "Strom stránek"
#: toolbox.src
msgctxt ""
diff --git a/source/cs/sd/uiconfig/sdraw/ui.po b/source/cs/sd/uiconfig/sdraw/ui.po
index f3b6aec8b49..3c88ccddc07 100644
--- a/source/cs/sd/uiconfig/sdraw/ui.po
+++ b/source/cs/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-07-04 19:09+0000\n"
+"PO-Revision-Date: 2017-02-18 13:30+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467659358.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487424622.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Číslování"
#: bulletsandnumbering.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Values from Selection"
-msgstr ""
+msgstr "Hodnoty z výběru"
#: copydlg.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Průhlednost"
#: drawparadialog.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Číslování"
#: drawprtldialog.ui
msgctxt ""
diff --git a/source/cs/sd/uiconfig/simpress/ui.po b/source/cs/sd/uiconfig/simpress/ui.po
index 93a11e63fb8..414a49826bf 100644
--- a/source/cs/sd/uiconfig/simpress/ui.po
+++ b/source/cs/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-07-04 19:09+0000\n"
+"PO-Revision-Date: 2017-02-18 14:25+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1467659391.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487427945.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Možnosti"
#: customanimationspanel.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation Deck"
-msgstr ""
+msgstr "Karta animací"
#: customanimationspanel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation List"
-msgstr ""
+msgstr "Seznam animací"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add Effect"
-msgstr ""
+msgstr "Přidat efekt"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove Effect"
-msgstr ""
+msgstr "Odstranit efekt"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Přesunout nahoru"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Přesunout dolů"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start:"
-msgstr ""
+msgstr "_Spustit:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Direction:"
-msgstr ""
+msgstr "_Směr:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "On click"
-msgstr ""
+msgstr "Při kliknutí"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "With previous"
-msgstr ""
+msgstr "S předchozím"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "After previous"
-msgstr ""
+msgstr "Po předchozím"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Kategorie:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Entrance"
-msgstr ""
+msgstr "Zobrazení"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Zdůraznění"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Exit"
-msgstr ""
+msgstr "Ukončení"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Motion Paths"
-msgstr ""
+msgstr "Křivka pohybu"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Misc Effects"
-msgstr ""
+msgstr "Různé efekty"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_uration:"
-msgstr ""
+msgstr "_Doba trvání:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Vyberte rychlost animace."
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Effect:"
-msgstr ""
+msgstr "Efekt:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Automatický náhled"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Přehrát"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Preview Effect"
-msgstr ""
+msgstr "Náhled efektu"
#: customanimationtexttab.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Vyberte rychlost animace."
#: customanimationtimingtab.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: navigatorpanel.ui
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Aktivní okno"
#: navigatorpanel.ui
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Slide"
-msgstr ""
+msgstr "První snímek"
#: navigatorpanel.ui
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Předchozí snímek"
#: navigatorpanel.ui
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Následující snímek"
#: navigatorpanel.ui
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Poslední snímek"
#: navigatorpanel.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Způsob přetáhnutí"
#: navigatorpanel.ui
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Shapes"
-msgstr ""
+msgstr "Zobrazit tvary"
#: notebookbar.ui
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Soubor"
#: notebookbar.ui
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Štěteček formátu"
#: notebookbar.ui
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Odrážky a číslování"
#: notebookbar.ui
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Odsazení"
#: notebookbar.ui
msgctxt ""
@@ -1679,7 +1679,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Zvětšit odsazení"
#: notebookbar.ui
msgctxt ""
@@ -1688,7 +1688,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Zmenšit odsazení"
#: notebookbar.ui
msgctxt ""
@@ -1697,7 +1697,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Vodorovné zarovnání"
#: notebookbar.ui
msgctxt ""
@@ -1706,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Domů"
#: notebookbar.ui
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Vložit zvuk nebo video"
#: notebookbar.ui
msgctxt ""
@@ -1724,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Symbol"
#: notebookbar.ui
msgctxt ""
@@ -1733,7 +1733,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Vložit"
#: notebookbar.ui
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transitions"
-msgstr ""
+msgstr "Přechody"
#: notebookbar.ui
msgctxt ""
@@ -1751,7 +1751,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animace"
#: notebookbar.ui
msgctxt ""
@@ -1760,7 +1760,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide Show"
-msgstr ""
+msgstr "Prezentace"
#: notebookbar.ui
msgctxt ""
@@ -1769,7 +1769,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Automatická kontrola pravopisu"
#: notebookbar.ui
msgctxt ""
@@ -1778,7 +1778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Revize"
#: notebookbar.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grid"
-msgstr ""
+msgstr "Mřížka"
#: notebookbar.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Zobrazit"
#: notebookbar.ui
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Tabulka"
#: notebookbar.ui
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Obrázek"
#: notebookbar_groups.ui
msgctxt ""
@@ -1823,7 +1823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Blank"
-msgstr ""
+msgstr "Prázdný"
#: notebookbar_groups.ui
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Snímek s nadpisem"
#: notebookbar_groups.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Text"
-msgstr ""
+msgstr "Nadpis a text"
#: notebookbar_groups.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Content"
-msgstr ""
+msgstr "Nadpis a obsah"
#: notebookbar_groups.ui
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centered Text"
-msgstr ""
+msgstr "Text zarovnaný na střed"
#: notebookbar_groups.ui
msgctxt ""
@@ -1868,7 +1868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hypertextový odkaz"
#: notebookbar_groups.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Poznámka pod čarou"
#: notebookbar_groups.ui
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Vysvětlivka"
#: notebookbar_groups.ui
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Záložka"
#: notebookbar_groups.ui
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Křížový odkaz"
#: notebookbar_groups.ui
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 1"
-msgstr ""
+msgstr "Předloha 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 2"
-msgstr ""
+msgstr "Předloha 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Výchozí"
#: notebookbar_groups.ui
msgctxt ""
@@ -1940,7 +1940,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Bez výplně"
#: notebookbar_groups.ui
msgctxt ""
@@ -1949,7 +1949,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "With Shadow"
-msgstr ""
+msgstr "Se stínem"
#: notebookbar_groups.ui
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 1"
-msgstr ""
+msgstr "Nadpis 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 2"
-msgstr ""
+msgstr "Nadpis 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1976,7 +1976,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Soubor"
#: notebookbar_groups.ui
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Schránka"
#: notebookbar_groups.ui
msgctxt ""
@@ -1994,10 +1994,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -2007,7 +2006,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -2023,7 +2021,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Text"
#: notebookbar_groups.ui
msgctxt ""
@@ -2032,7 +2030,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Spustit"
#: notebookbar_groups.ui
msgctxt ""
@@ -2041,7 +2039,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master"
-msgstr ""
+msgstr "Předloha"
#: notebookbar_groups.ui
msgctxt ""
@@ -2050,7 +2048,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Layout"
-msgstr ""
+msgstr "Rozvržení"
#: notebookbar_groups.ui
msgctxt ""
@@ -2059,7 +2057,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animace"
#: notebookbar_groups.ui
msgctxt ""
@@ -2068,7 +2066,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transition"
-msgstr ""
+msgstr "Přechod"
#: notebookbar_groups.ui
msgctxt ""
@@ -2077,7 +2075,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide"
-msgstr ""
+msgstr "Snímek"
#: notebookbar_groups.ui
msgctxt ""
@@ -2086,7 +2084,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Tvary"
#: notebookbar_groups.ui
msgctxt ""
@@ -2095,7 +2093,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Odkazy"
#: notebookbar_groups.ui
msgctxt ""
@@ -2104,7 +2102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Vložit"
#: notebookbar_groups.ui
msgctxt ""
@@ -2113,7 +2111,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Styl"
#: notebookbar_groups.ui
msgctxt ""
@@ -2122,7 +2120,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Obnovit"
#: notebookbar_groups.ui
msgctxt ""
@@ -2131,7 +2129,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Obtékání textu"
#: notebookbar_groups.ui
msgctxt ""
@@ -2140,7 +2138,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Uzamknout"
#: notebookbar_groups.ui
msgctxt ""
@@ -2149,7 +2147,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Obrázek"
#: notebookbar_groups.ui
msgctxt ""
@@ -2158,7 +2156,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Žádné"
#: notebookbar_groups.ui
msgctxt ""
@@ -2167,7 +2165,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Optimální"
#: notebookbar_groups.ui
msgctxt ""
@@ -2176,7 +2174,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Rovnoběžné"
#: notebookbar_groups.ui
msgctxt ""
@@ -2185,7 +2183,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Před"
#: notebookbar_groups.ui
msgctxt ""
@@ -2194,7 +2192,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Za"
#: notebookbar_groups.ui
msgctxt ""
@@ -2203,7 +2201,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Přes"
#: notebookbar_groups.ui
msgctxt ""
@@ -2212,7 +2210,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Obrys"
#: notebookbar_groups.ui
msgctxt ""
@@ -2221,7 +2219,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Upravit obrys"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2257,7 +2255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start with _Template Selection"
-msgstr ""
+msgstr "Začít s _výběrem šablony"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2509,7 +2507,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fill Screen"
-msgstr ""
+msgstr "Vyplnit obrazovku"
#: photoalbum.ui
msgctxt ""
@@ -2518,7 +2516,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link images"
-msgstr ""
+msgstr "Obrázky jako odkazy"
#: photoalbum.ui
msgctxt ""
@@ -3760,7 +3758,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Předloha snímku"
#: sidebarslidebackground.ui
msgctxt ""
@@ -3769,7 +3767,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Close Master Slide"
-msgstr ""
+msgstr "Zavřít předlohu snímku"
#: slidedesigndialog.ui
msgctxt ""
@@ -3958,7 +3956,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Duration:"
-msgstr ""
+msgstr "Doba trvání:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3967,7 +3965,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of Slide Transition."
-msgstr ""
+msgstr "Vyberte rychlost přechodu mezi snímky."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3976,7 +3974,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Variant:"
-msgstr ""
+msgstr "Varianta:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3985,7 +3983,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sound:"
-msgstr ""
+msgstr "Zvuk:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -3994,7 +3992,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "No sound"
-msgstr ""
+msgstr "Žádný zvuk"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4003,7 +4001,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Stop previous sound"
-msgstr ""
+msgstr "Zastavit předchozí zvuk"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4012,7 +4010,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Other sound..."
-msgstr ""
+msgstr "Jiný zvuk..."
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4021,7 +4019,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Loop until next sound"
-msgstr ""
+msgstr "Opakovat do dalšího zvuku"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4030,7 +4028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "On mouse click"
-msgstr ""
+msgstr "Při kliknutí myší"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4039,7 +4037,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatically after:"
-msgstr ""
+msgstr "Automaticky po:"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4048,7 +4046,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4057,7 +4055,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Automatický náhled"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4066,7 +4064,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Použít přechod na všechny snímky"
#: slidetransitionspanelhorizontal.ui
msgctxt ""
@@ -4075,7 +4073,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Přehrát"
#: tabledesignpanel.ui
msgctxt ""
@@ -4138,7 +4136,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Header row"
-msgstr ""
+msgstr "Řádek _záhlaví"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4147,7 +4145,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tot_al row"
-msgstr ""
+msgstr "Řádek so_učtu"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4156,7 +4154,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Banded rows"
-msgstr ""
+msgstr "Pruhované řá_dky"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4165,7 +4163,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ba_nded columns"
-msgstr ""
+msgstr "Pruhované _sloupce"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4174,7 +4172,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fi_rst column"
-msgstr ""
+msgstr "_První sloupec"
#: tabledesignpanelhorizontal.ui
msgctxt ""
@@ -4183,7 +4181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Last column"
-msgstr ""
+msgstr "P_oslední sloupec"
#: templatedialog.ui
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sdraw/guide.po b/source/de/helpcontent2/source/text/sdraw/guide.po
index ea4771a3ced..f628fb8115d 100644
--- a/source/de/helpcontent2/source/text/sdraw/guide.po
+++ b/source/de/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ 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-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-02-16 10:02+0000\n"
+"PO-Revision-Date: 2017-02-19 09:35+0000\n"
"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487239322.000000\n"
+"X-POOTLE-MTIME: 1487496923.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -1899,7 +1899,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
-msgstr "Drücken Sie den die Taste <item type=\"keycode\">Pfeil nach rechts</item>, bis Sie das Symbol eines Zeichenwerkzeugs in der Symbolleiste erreichen."
+msgstr "Drücken Sie die Taste <item type=\"keycode\">Pfeil nach rechts</item>, bis Sie das Symbol eines Zeichenwerkzeugs in der Symbolleiste erreichen."
#: keyboard.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/04.po b/source/de/helpcontent2/source/text/simpress/04.po
index 121f68f3190..6063ab8d0be 100644
--- a/source/de/helpcontent2/source/text/simpress/04.po
+++ b/source/de/helpcontent2/source/text/simpress/04.po
@@ -4,17 +4,17 @@ 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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-01-15 06:03+0000\n"
-"Last-Translator: Dennis Roczek <dennisroczek@gmail.com>\n"
+"PO-Revision-Date: 2017-02-19 09:37+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452837836.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487497072.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -129,7 +129,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>F3"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl </caseinline><defaultinline>Strg</defaultinline></switchinline> +F3"
#: 01020000.xhp
msgctxt ""
@@ -379,7 +379,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "Go to next slide without playing effects."
-msgstr "Wechselt zur nächsten Folie ohne Effekten abzuspielen."
+msgstr "Wechselt zur nächsten Folie, ohne die Effekte abzuspielen."
#: 01020000.xhp
msgctxt ""
@@ -431,7 +431,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "Go to the previous slide without playing effects."
-msgstr "Wechselt zur vorhergehenden Folie ohne Effekten abzuspielen."
+msgstr "Wechselt zur vorhergehenden Folie, ohne die Effekte abzuspielen."
#: 01020000.xhp
msgctxt ""
diff --git a/source/de/sc/source/ui/src.po b/source/de/sc/source/ui/src.po
index 44d62c6b49a..2b305a9cde7 100644
--- a/source/de/sc/source/ui/src.po
+++ b/source/de/sc/source/ui/src.po
@@ -4,8 +4,8 @@ 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-12-10 23:38+0100\n"
-"PO-Revision-Date: 2017-01-31 13:43+0000\n"
-"Last-Translator: kuehl <kuehl@libreoffice.org>\n"
+"PO-Revision-Date: 2017-02-19 09:25+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485870180.000000\n"
+"X-POOTLE-MTIME: 1487496318.000000\n"
#: filter.src
msgctxt ""
@@ -1442,7 +1442,7 @@ msgid ""
msgstr ""
"Ungültiger Tabellenname.\n"
"Der Name der Tabelle darf nicht identisch mit einem bestehenden \n"
-"Namen sein und nicht die Zeichen [ ] * ? : / enthalten\\"
+"Namen sein und nicht die Zeichen [ ] * ? : / \\ enthalten."
#: globstr.src
msgctxt ""
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index 6f7c3e73fd6..42db3746ff1 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 14:33+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2017-02-17 04:28+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487169222.000000\n"
+"X-POOTLE-MTIME: 1487305725.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -12688,7 +12688,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Notebookbar icon size:"
-msgstr "Cinta:"
+msgstr "Barra contextual:"
#: optviewpage.ui
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 63a47e454ce..aaa744b6550 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2017-01-11 01:53+0000\n"
+"PO-Revision-Date: 2017-02-19 11:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484099599.000000\n"
+"X-POOTLE-MTIME: 1487504880.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60356,7 +60356,7 @@ msgctxt ""
"par_id363475\n"
"help.text"
msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr "Define el diseño y las propiedades de anclaje del texto en el dibujo u objeto de texto seleccionado."
+msgstr "Define la disposición y las propiedades de anclaje del texto en el dibujo u objeto de texto seleccionado."
#: format_graphic.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 5e78a8b216a..175140efdb3 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -4,7 +4,7 @@ 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-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-01-08 13:37+0000\n"
+"PO-Revision-Date: 2017-02-19 11:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483882647.000000\n"
+"X-POOTLE-MTIME: 1487504961.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -681,7 +681,7 @@ msgctxt ""
"par_id3157909\n"
"help.text"
msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
-msgstr ""
+msgstr "Los marcos resultan útiles para diseñar la disposición de las páginas <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>. $[officename] utiliza marcos flotantes. En ellos puede colocar objetos como imágenes, vídeos y sonidos. En el menú contextual de un marco aparecen las opciones para modificar o restaurar el contenido de los marcos. Si se selecciona el marco, algunas órdenes también aparecen en <emph>Editar ▸ Objeto</emph>."
#: 00000002.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 8407c35d6b3..118a8bcba73 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-15 23:40+0000\n"
+"PO-Revision-Date: 2017-02-19 11:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487202053.000000\n"
+"X-POOTLE-MTIME: 1487505019.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -67,7 +67,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
-msgstr "Una plantilla es un archivo que contiene los elementos de diseño de un documento y que incluye los estilos de formato, fondos, marcos, gráficos, campos, diseño de página y texto."
+msgstr "Una plantilla es un archivo que contiene los elementos de diseño de un documento y que incluye los estilos de formato, fondos, marcos, gráficos, campos, disposición de páginas y texto."
#: 01010000.xhp
msgctxt ""
@@ -42173,7 +42173,7 @@ msgctxt ""
"bm_id190920161758487840\n"
"help.text"
msgid "<bookmark_value>notebook bar;contextual single toolbar</bookmark_value> <bookmark_value>notebook bar;contextual groups</bookmark_value> <bookmark_value>notebook bar;tabbed mode</bookmark_value> <bookmark_value>notebook bar;single toolbar</bookmark_value> <bookmark_value>notebook bar;default layout</bookmark_value> <bookmark_value>notebook bar;layouts</bookmark_value> <bookmark_value>notebook bar;toolbar</bookmark_value> <bookmark_value>notebook bar;sidebar</bookmark_value> <bookmark_value>sidebar;notebook bar</bookmark_value> <bookmark_value>toolbar;notebook bar</bookmark_value>"
-msgstr "<bookmark_value>cinta;barra de herramientas única contextual</bookmark_value><bookmark_value>cinta;grupos contextuales</bookmark_value><bookmark_value>cinta;modo con pestañas</bookmark_value><bookmark_value>cinta;barra de herramientas única</bookmark_value><bookmark_value>cinta;disposición predeterminada</bookmark_value><bookmark_value>cinta;disposiciones</bookmark_value><bookmark_value>cinta;barra de herramientas</bookmark_value><bookmark_value>cinta;barra lateral</bookmark_value><bookmark_value>barra lateral;cinta</bookmark_value><bookmark_value>barra de herramientas;cinta</bookmark_value>"
+msgstr "<bookmark_value>barra contextual;barra de herramientas única contextual</bookmark_value><bookmark_value>barra contextual;grupos contextuales</bookmark_value><bookmark_value>barra contextual;modo con pestañas</bookmark_value><bookmark_value>barra contextual;barra de herramientas única</bookmark_value><bookmark_value>barra contextual;disposición predeterminada</bookmark_value><bookmark_value>barra contextual;disposiciones</bookmark_value><bookmark_value>barra contextual;barra de herramientas</bookmark_value><bookmark_value>barra contextual;barra lateral</bookmark_value><bookmark_value>barra lateral;barra contextual</bookmark_value><bookmark_value>barra de herramientas;barra contextual</bookmark_value>"
#: notebook_bar.xhp
msgctxt ""
@@ -42181,7 +42181,7 @@ msgctxt ""
"hd_id190920161731349683\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\">Using the notebook bar</link>"
-msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Uso de la cinta</link>"
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Uso de la barra contextual</link>"
#: notebook_bar.xhp
msgctxt ""
@@ -42189,7 +42189,7 @@ msgctxt ""
"par_id190920161732262244\n"
"help.text"
msgid "<ahelp hid=\".\">The notebook bar is a new form of displaying commands icons for a quicker usage</ahelp>"
-msgstr "<ahelp hid=\".\">La cinta es una nueva manera de disponer los iconos de las órdenes para permitir una utilización más ágil.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra contextual es una manera nueva de disponer los iconos de las órdenes para permitir una utilización más ágil.</ahelp>"
#: notebook_bar.xhp
msgctxt ""
@@ -42205,7 +42205,7 @@ msgctxt ""
"par_id190920161744061691\n"
"help.text"
msgid "The notebook bar shows a different way to organize controls and icons than a collection of straight rows of icons, displaying contextual groups of commands and contents."
-msgstr "La cinta organiza los controles y los iconos de una manera distinta a las filas de iconos, estructurándolos en grupos contextuales de órdenes y contenidos."
+msgstr "La barra contextual organiza los controles y los iconos de una manera distinta a las filas de iconos, estructurándolos en grupos lógicos de órdenes y contenidos."
#: notebook_bar.xhp
msgctxt ""
@@ -42213,7 +42213,7 @@ msgctxt ""
"par_id190920161744064258\n"
"help.text"
msgid "With the notebook bar, frequently used commands are grouped in an arrangement that will make it quicker to access, avoiding lengthy menu navigation and toolbars command icon lookup."
-msgstr "Con la cinta, las órdenes de uso más frecuente están agrupadas en una disposición que acelera su acceso, lo que le ahorra largas exploraciones de los menús y las barras de herramientas."
+msgstr "Con la barra contextual, las órdenes de uso más frecuente están agrupadas en una disposición que acelera su acceso, lo que le ahorra largas exploraciones de los menús y las barras de herramientas."
#: notebook_bar.xhp
msgctxt ""
@@ -42221,7 +42221,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. Two entries in the <item type=\"menuitem\">View</item> menu controls the notebook bar: <item type=\"menuitem\">Toolbar Layout</item> and <item type=\"menuitem\">Notebook bar</item>."
-msgstr "La cinta está disponible en Writer, Calc e Impress. La interfaz de usuario ahora está disponible en varias disposiciones, las cuales pueden controlarse mediante dos órdenes del menú <item type=\"menuitem\">Ver</item>: <item type=\"menuitem\">Disposición de interfaz</item> y <item type=\"menuitem\">Cinta</item>."
+msgstr "La barra contextual está disponible en Writer, Calc e Impress. La interfaz de usuario ahora está disponible en varias disposiciones, las cuales pueden controlarse mediante dos órdenes del menú <item type=\"menuitem\">Ver</item>: <item type=\"menuitem\">Disposición de interfaz</item> y <item type=\"menuitem\">Barra contextual</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42229,7 +42229,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - Toolbar layout - Notebook bar</item>"
-msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Disposición de interfaz ▸ Cinta</item>"
+msgstr "Vaya a <item type=\"menuitem\">Ver ▸ Disposición de interfaz ▸ Barra contextual</item>"
#: notebook_bar.xhp
msgctxt ""
@@ -42277,7 +42277,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "<emph>Notebook bar</emph> – all toolbar and sidebar are hidden and the notebook bar is placed on the top. The menu entry: <item type=\"menuitem\">View </item><item type=\"menuitem\">-</item><item type=\"menuitem\"> Notebook bar</item> is active only in this mode and user can then choose the notebook bar layout."
-msgstr ""
+msgstr "<emph>Barra contextual</emph>: todas las barras de herramientas, así como la barra lateral, se ocultan, y la barra contextual aparece en la parte superior. El elemento del menú <item type=\"menuitem\">Ver ▸ Barra contextual</item> se activa únicamente en esta modalidad, para permitirle elegir la disposición de la barra contextual."
#: notebook_bar.xhp
msgctxt ""
@@ -42285,7 +42285,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning to the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Cuando los usuarios activan barras de herramientas adicionales, estas se guardan en el perfil de usuario. Así, al volver del modo de barra contextual, todas las barras de herramientas mostradas anteriormente aparecerán de nueva cuenta."
#: notebook_bar.xhp
msgctxt ""
@@ -42317,7 +42317,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Format groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>Grupos contextuales</emph>: la barra contextual se divide en cuatro grupos. Los grupos «Archivo», «Portapapeles» y «Formato» son fijos. El contenido del grupo «Insertar» varía según el tipo de objeto que seleccione en el documento, ya sea una tabla, una imagen o un objeto OLE."
#: notebook_bar.xhp
msgctxt ""
@@ -42333,7 +42333,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <item type=\"menuitem\">Tools - Options - LibreOffice - View - Notebook bar </item>listbox."
-msgstr "Se puede ajustar el tamaño de los iconos en la cinta en el cuadro de lista correspondiente de <item type=\"menuitem\">Herramientas ▸ Opciones ▸ LibreOffice ▸ Ver ▸ Cinta</item>."
+msgstr "Se puede ajustar el tamaño de los iconos en la barra contextual en el cuadro de lista correspondiente de <item type=\"menuitem\">Herramientas ▸ Opciones ▸ LibreOffice ▸ Ver ▸ Cinta</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -42341,7 +42341,7 @@ msgctxt ""
"par_id190920161744074862\n"
"help.text"
msgid "The notebook bar cannot be customized."
-msgstr "La cinta no se puede personalizar."
+msgstr "La barra contextual no se puede personalizar."
#: notebook_bar.xhp
msgctxt ""
@@ -42349,7 +42349,7 @@ msgctxt ""
"par_id190920161744078275\n"
"help.text"
msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules."
-msgstr "La versión actual (%PRODUCTNAME %PRODUCTVERSION) de la cinta es común a Writer, Calc e Impress. Un cambio realizado a la cinta afectará también a las demás aplicaciones."
+msgstr "La versión actual (%PRODUCTNAME %PRODUCTVERSION) de la barra contextual es común a Writer, Calc e Impress. Un cambio realizado a la barra contextual afectará también a las demás aplicaciones."
#: notebook_bar.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index de68fc7f1a6..85c36d5bebc 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ 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-12-21 15:39+0100\n"
-"PO-Revision-Date: 2017-01-11 02:19+0000\n"
+"PO-Revision-Date: 2017-02-17 04:42+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484101197.000000\n"
+"X-POOTLE-MTIME: 1487306542.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -8784,7 +8784,7 @@ msgctxt ""
"par_id190920161856181370\n"
"help.text"
msgid "Toolbars are hidden by default when the <link href=\"text/shared/01/notebook_bar.xhp\">Notebook bar</link> is active."
-msgstr "Cuando se activa la <link href=\"text/shared/01/notebook_bar.xhp\">cinta</link>, las barras de herramientas se ocultan de manera predeterminada."
+msgstr "Cuando se activa la <link href=\"text/shared/01/notebook_bar.xhp\">barra contextual</link>, las barras de herramientas se ocultan de manera predeterminada."
#: floating_toolbar.xhp
msgctxt ""
@@ -8904,7 +8904,7 @@ msgctxt ""
"par_id190920161856185296\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\">Notebook bar</link>"
-msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Cinta</link>"
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Barra contextual</link>"
#: fontwork.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 2d096e4c5aa..a0562ded4ac 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/helpcontent2/source/text/shared/optionen.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-13 20:05+0000\n"
+"PO-Revision-Date: 2017-02-17 04:42+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484337929.000000\n"
+"X-POOTLE-MTIME: 1487306576.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3385,7 +3385,7 @@ msgctxt ""
"bm_id3155341\n"
"help.text"
msgid "<bookmark_value>views; defaults</bookmark_value> <bookmark_value>defaults; views</bookmark_value> <bookmark_value>settings; views</bookmark_value> <bookmark_value>icons; sizes</bookmark_value> <bookmark_value>icons; styles</bookmark_value> <bookmark_value>WYSIWYG in fonts lists</bookmark_value> <bookmark_value>previews; fonts lists</bookmark_value> <bookmark_value>font lists</bookmark_value> <bookmark_value>font name box</bookmark_value> <bookmark_value>mouse; positioning</bookmark_value> <bookmark_value>clipboard; selection clipboard</bookmark_value> <bookmark_value>selection clipboard</bookmark_value> <bookmark_value>OpenGL;settings</bookmark_value> <bookmark_value>OpenGL;blacklist</bookmark_value> <bookmark_value>OpenGL;whitelist</bookmark_value> <bookmark_value>OpenGL;graphics output</bookmark_value> <bookmark_value>notebook bar;icon size</bookmark_value>"
-msgstr "<bookmark_value>vistas;valores predeterminados</bookmark_value><bookmark_value>valores predeterminados;vistas</bookmark_value><bookmark_value>configuración;vistas</bookmark_value><bookmark_value>iconos;tamaños</bookmark_value><bookmark_value>iconos;estilos</bookmark_value><bookmark_value>WYSIWYG en listas de tipos de letra</bookmark_value><bookmark_value>previsualizaciones;listas de tipos de letra</bookmark_value><bookmark_value>listas de tipos de letra</bookmark_value><bookmark_value>cuadro de nombre de tipo de letra</bookmark_value><bookmark_value>ratón;posicionamiento</bookmark_value><bookmark_value>portapapeles;portapapeles de selección</bookmark_value><bookmark_value>portapapeles de selección</bookmark_value><bookmark_value>OpenGL;configuración</bookmark_value><bookmark_value>OpenGL;lista negra</bookmark_value><bookmark_value>OpenGL;lista blanca</bookmark_value><bookmark_value>OpenGL;salida de gráficos</bookmark_value><bookmark_value>cinta;tamaño de iconos</bookmark_value>"
+msgstr "<bookmark_value>vistas;valores predeterminados</bookmark_value><bookmark_value>valores predeterminados;vistas</bookmark_value><bookmark_value>configuración;vistas</bookmark_value><bookmark_value>iconos;tamaños</bookmark_value><bookmark_value>iconos;estilos</bookmark_value><bookmark_value>WYSIWYG en listas de tipos de letra</bookmark_value><bookmark_value>previsualizaciones;listas de tipos de letra</bookmark_value><bookmark_value>listas de tipos de letra</bookmark_value><bookmark_value>cuadro de nombre de tipo de letra</bookmark_value><bookmark_value>ratón;posicionamiento</bookmark_value><bookmark_value>portapapeles;portapapeles de selección</bookmark_value><bookmark_value>portapapeles de selección</bookmark_value><bookmark_value>OpenGL;configuración</bookmark_value><bookmark_value>OpenGL;lista negra</bookmark_value><bookmark_value>OpenGL;lista blanca</bookmark_value><bookmark_value>OpenGL;salida de gráficos</bookmark_value><bookmark_value>barra contextual;tamaño de iconos</bookmark_value>"
#: 01010800.xhp
msgctxt ""
@@ -3449,7 +3449,7 @@ msgctxt ""
"hd_id190920161822223888\n"
"help.text"
msgid "Notebook bar icon size"
-msgstr "Tamaño de iconos de cinta"
+msgstr "Tamaño de iconos de barra contextual"
#: 01010800.xhp
msgctxt ""
@@ -3457,7 +3457,7 @@ msgctxt ""
"par_id190920161825438077\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Specifies the display size of <link href=\"text/shared/01/notebook_bar.xhp\">notebook bar</link> icons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Especifica el tamaño de los iconos de la <link href=\"text/shared/01/notebook_bar.xhp\">cinta</link>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optviewpage/notebookbariconsize\">Especifica el tamaño de los iconos de la <link href=\"text/shared/01/notebook_bar.xhp\">barra contextual</link>.</ahelp>"
#: 01010800.xhp
msgctxt ""
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index 184c2422ca7..4815d8fd7b0 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-02-16 11:40+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2017-02-17 04:29+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487245259.000000\n"
+"X-POOTLE-MTIME: 1487305751.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -19159,7 +19159,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr "Cinta"
+msgstr "Barra contextual"
#: GenericCommands.xcu
msgctxt ""
@@ -24775,7 +24775,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr "Cinta"
+msgstr "Barra contextual"
#: ToolbarMode.xcu
msgctxt ""
diff --git a/source/es/sd/source/ui/app.po b/source/es/sd/source/ui/app.po
index 4f26e078830..ca0797a3559 100644
--- a/source/es/sd/source/ui/app.po
+++ b/source/es/sd/source/ui/app.po
@@ -4,8 +4,8 @@ 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: 2017-01-11 03:24+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2017-02-16 16:55+0000\n"
+"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484105099.000000\n"
+"X-POOTLE-MTIME: 1487264105.000000\n"
#: popup.src
msgctxt ""
@@ -1506,7 +1506,7 @@ msgctxt ""
"STR_LOAD_PRESENTATION_LAYOUT\n"
"string.text"
msgid "Load Slide Design"
-msgstr "Cargar estilo de página"
+msgstr "Cargar patrón"
#: strings.src
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/05.po b/source/eu/helpcontent2/source/text/scalc/05.po
index 3d11012d99f..aafe75b4235 100644
--- a/source/eu/helpcontent2/source/text/scalc/05.po
+++ b/source/eu/helpcontent2/source/text/scalc/05.po
@@ -4,8 +4,8 @@ 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: 2017-01-05 15:14+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-02-18 10:44+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483629248.000000\n"
+"X-POOTLE-MTIME: 1487414682.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "525<br/>#NAME?"
-msgstr "525<br/>#IZENA?"
+msgstr "525<br/>#NAME?"
#: 02140000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/00.po b/source/eu/helpcontent2/source/text/swriter/00.po
index 85554291446..a0b370ed576 100644
--- a/source/eu/helpcontent2/source/text/swriter/00.po
+++ b/source/eu/helpcontent2/source/text/swriter/00.po
@@ -4,17 +4,17 @@ 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-07-12 13:11+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-02-18 10:59+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468329077.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487415593.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -976,7 +976,7 @@ msgctxt ""
"par_id3146342\n"
"help.text"
msgid "<variable id=\"stichwortverzeichnisverz1\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"stichwortverzeichnisverz1\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa</variable>"
#: 00000404.xhp
msgctxt ""
@@ -984,7 +984,7 @@ msgctxt ""
"par_id3147449\n"
"help.text"
msgid "<variable id=\"verz2\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (depending on the type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz2\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (hautatutako motaren arabera)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -992,7 +992,7 @@ msgctxt ""
"par_id3149835\n"
"help.text"
msgid "<variable id=\"verz21\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Table of Contents is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz21\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (hautatutako mota aurkibidea denean) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1000,7 +1000,7 @@ msgctxt ""
"par_id3148855\n"
"help.text"
msgid "<variable id=\"verz22\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Alphabetical Index is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz22\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (aukeratutako mota indize alfabetikoa denean)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1008,7 +1008,7 @@ msgctxt ""
"par_id3155575\n"
"help.text"
msgid "<variable id=\"verz23\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Illustration Index is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz23\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (aukeratutako mota ilustrazioen indizea denean)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1016,7 +1016,7 @@ msgctxt ""
"par_id3151080\n"
"help.text"
msgid "<variable id=\"verz24\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Index of Tables is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz24\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (hautatutako mota taulen indizea denean) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1024,7 +1024,7 @@ msgctxt ""
"par_id3154777\n"
"help.text"
msgid "<variable id=\"verz25\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when User-Defined is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz25\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (hautatutako mota erabiltzaileak zehaztua denean) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1032,7 +1032,7 @@ msgctxt ""
"par_id3148448\n"
"help.text"
msgid "<variable id=\"verz26\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph> tab (when Table of Objects is the selected type)</variable>"
-msgstr ""
+msgstr "<variable id=\"verz26\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph> fitxa (objektuen taula aukeratuta dagoenean) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1048,7 +1048,7 @@ msgctxt ""
"par_id3153295\n"
"help.text"
msgid "<variable id=\"verz28\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Type</emph>, mark \"Additional Styles\" check box and then click <emph>Assign styles</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"verz28\">Aukeratu <emph>Txertatu - Aurkibidea eta indizea - Aurkibidea, indizea edo bibliografia - Mota</emph>, markatu \"Estilo gehigarriak\" eta egin klik <emph>Estiloak esleitu</emph> botoian</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1181,7 +1181,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa/Objektua - Propietateak</emph> fitxa"
#: 00000404.xhp
msgctxt ""
@@ -1303,7 +1303,7 @@ msgctxt ""
"par_id3147267\n"
"help.text"
msgid "<variable id=\"kopfzeile\">Choose <emph>Insert - Header and Footer - Header</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"kopfzeile\">Aukeratu <emph>Txertatu - Goiburukoa eta orri-oina - Goiburukoa</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"par_id3147290\n"
"help.text"
msgid "<variable id=\"fusszeile\">Choose <emph>Insert - Header and Footer - Footer</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fusszeile\">Aukeratu <emph>Txertatu - Goiburukoa eta orri-oina - Orri-oina</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Columns</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Zutabeak</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3149841\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Type</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Propietateak - Mota</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1688,7 +1688,7 @@ msgctxt ""
"par_id3148437\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Wrap</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Propietateak - Egokitu</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1732,7 +1732,7 @@ msgctxt ""
"par_id3156130\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Hyperlink</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Hiperesteka</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"par_id3145636\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Options</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Aukerak</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1801,7 +1801,7 @@ msgctxt ""
"par_id3154323\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Macro</emph> tab"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Propietateak - Makroa</emph> fitxa"
#: 00000405.xhp
msgctxt ""
@@ -1844,7 +1844,7 @@ msgctxt ""
"par_id3155114\n"
"help.text"
msgid "<variable id=\"formattabelle\">Choose <emph>Table - Properties</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"formattabelle\">Aukeratu <emph>Taula - Propietateak</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3151233\n"
"help.text"
msgid "<variable id=\"tabformat\">Choose <emph>Table - Properties - Table</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"tabformat\">Aukeratu <emph>Taula - Propietateak - Taula</emph> fitxa</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "<variable id=\"spaltentab\">Choose <emph>Table - Properties - Columns</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"spaltentab\">Aukeratu <emph>Taula - Propietateak - Zutabeak</emph> fitxa</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3153140\n"
"help.text"
msgid "<variable id=\"tabelletextfluss\">Choose <emph>Table - Properties - Text Flow</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletextfluss\">Aukeratu <emph>Taula - Propietateak - Testu-fluxua </emph> fitxa</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2321,7 +2321,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>"
-msgstr ""
+msgstr "Aukeratu <emph>Formatua - Markoa eta objektua - Propietateak</emph> fitxa"
#: 00000405.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index afbae713c65..17dbf2bfafb 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/01.po
@@ -4,8 +4,8 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-08-12 12:59+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2017-02-18 11:01+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1471006749.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487415691.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Inprimatze-aurrebista"
#: 01120000.xhp
msgctxt ""
@@ -722,7 +722,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "To open the Navigator, choose <emph>View - Navigator</emph>. To move the Navigator, drag its title bar. To dock the Navigator, drag its title bar to the left or to the right edge of the workspace. To undock the Navigator, hold down the Ctrl key and double-click on a grey area of the Navigator."
-msgstr ""
+msgstr "Nabigatzailea irekitzeko, aukeratu <emph>Ikusi - Nabigatzailea</emph>. Nabigatzailea mugitzeko, arrastatu bere titulu-barra. Nabigatzailea atrakatzeko, arrastatu bere titulu-barraren laneko arearen ezker edo eskuin ertzera. Nabigatzailea desatrakatzeko, Ctrl tekla sakatuta eduki eta klik bikoitz egin Nabigatzaileko area grisean."
#: 02110000.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"66\n"
"help.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Txandakatu ikuspegi maisua"
#: 02110000.xhp
msgctxt ""
@@ -784,7 +784,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Txandakatu ikuspegi maisua"
#: 02110000.xhp
msgctxt ""
diff --git a/source/fi/cui/uiconfig/ui.po b/source/fi/cui/uiconfig/ui.po
index 39d2dff9b0a..b08770863fd 100644
--- a/source/fi/cui/uiconfig/ui.po
+++ b/source/fi/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-01-29 17:56+0000\n"
+"PO-Revision-Date: 2017-02-18 16:35+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485712568.000000\n"
+"X-POOTLE-MTIME: 1487435731.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Scale"
-msgstr ""
+msgstr "Skaalaa"
#: bitmaptabpage.ui
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position:"
-msgstr ""
+msgstr "Sijainti:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Top Left"
-msgstr ""
+msgstr "Ylävasemmalla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Top Center"
-msgstr ""
+msgstr "Ylhäällä keskellä"
#: bitmaptabpage.ui
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Top Right"
-msgstr ""
+msgstr "Yläoikealla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Center Left"
-msgstr ""
+msgstr "Keskellä vasemmalla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Center"
-msgstr ""
+msgstr "Keskellä"
#: bitmaptabpage.ui
msgctxt ""
@@ -1418,7 +1418,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Center Right"
-msgstr ""
+msgstr "Keskellä oikealla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1427,7 +1427,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Bottom Left"
-msgstr ""
+msgstr "Alavasemmalla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Bottom Center"
-msgstr ""
+msgstr "Alhaalla keskellä"
#: bitmaptabpage.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Bottom Right"
-msgstr ""
+msgstr "Alaoikealla"
#: bitmaptabpage.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Position:"
-msgstr ""
+msgstr "Toiston lähtöpiste:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X:"
-msgstr ""
+msgstr "X:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y:"
-msgstr ""
+msgstr "Y:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Offset:"
-msgstr ""
+msgstr "Toiston siirtymä:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Row"
-msgstr ""
+msgstr "Rivi"
#: bitmaptabpage.ui
msgctxt ""
@@ -1499,7 +1499,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Column"
-msgstr ""
+msgstr "Sarake"
#: bitmaptabpage.ui
msgctxt ""
@@ -1508,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Asetukset"
#: bitmaptabpage.ui
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Esimerkki"
#: bitmaptabpage.ui
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1706,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pr_esets:"
-msgstr ""
+msgstr "Esivalitut:"
#: borderpage.ui
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Adjacent Cells:"
-msgstr ""
+msgstr "Viereiset solut:"
#: borderpage.ui
msgctxt ""
@@ -1724,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove border"
-msgstr ""
+msgstr "Poista reunus"
#: borderpage.ui
msgctxt ""
@@ -3155,7 +3155,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Palette:"
-msgstr ""
+msgstr "Paletti:"
#: colorpage.ui
msgctxt ""
@@ -3164,7 +3164,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Colors"
-msgstr ""
+msgstr "Viimeisimmät värit"
#: colorpage.ui
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: colorpage.ui
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: colorpage.ui
msgctxt ""
@@ -3191,7 +3191,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Poista"
#: colorpage.ui
msgctxt ""
@@ -3200,7 +3200,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Palette"
-msgstr ""
+msgstr "Muokattu paletti"
#: colorpage.ui
msgctxt ""
@@ -3209,7 +3209,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colors"
-msgstr ""
+msgstr "Värit"
#: colorpage.ui
msgctxt ""
@@ -3227,7 +3227,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "B"
-msgstr ""
+msgstr "B"
#: colorpage.ui
msgctxt ""
@@ -3236,7 +3236,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "G"
-msgstr ""
+msgstr "G"
#: colorpage.ui
msgctxt ""
@@ -3245,7 +3245,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R"
-msgstr ""
+msgstr "R"
#: colorpage.ui
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hex"
-msgstr ""
+msgstr "Heksa"
#: colorpage.ui
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_C"
-msgstr ""
+msgstr "_C"
#: colorpage.ui
msgctxt ""
@@ -3272,7 +3272,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_K"
-msgstr ""
+msgstr "_K"
#: colorpage.ui
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y"
-msgstr ""
+msgstr "_Y"
#: colorpage.ui
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_M"
-msgstr ""
+msgstr "_M"
#: colorpage.ui
msgctxt ""
@@ -3299,7 +3299,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Aktiivinen"
#: colorpage.ui
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Sininen"
#: colorpage.ui
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Punainen"
#: colorpage.ui
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"primary_icon_tooltip_text\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Vihreä"
#: colorpage.ui
msgctxt ""
@@ -3371,7 +3371,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Hex"
-msgstr ""
+msgstr "Heksa"
#: colorpage.ui
msgctxt ""
@@ -3416,7 +3416,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pick"
-msgstr ""
+msgstr "Valitse"
#: colorpage.ui
msgctxt ""
@@ -3425,7 +3425,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New"
-msgstr ""
+msgstr "Uusi"
#: colorpickerdialog.ui
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accessibility option \"Use automatic font color for screen display\" is active. Font color attributes are not currently used to display text."
-msgstr ""
+msgstr "Saavutettavuusasetus \"Käytä näytöllä automaattista fontin väriä\" on käytössä. Fontille asetettua väriä ei tällä hetkellä käytetä näytettäessä tekstiä näytöllä."
#: effectspage.ui
msgctxt ""
@@ -5657,7 +5657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Gradient"
-msgstr ""
+msgstr "Liukuvärjäys"
#: gradientpage.ui
msgctxt ""
@@ -5729,7 +5729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Increment:"
-msgstr ""
+msgstr "Lisäys:"
#: gradientpage.ui
msgctxt ""
@@ -5738,7 +5738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaattinen"
#: gradientpage.ui
msgctxt ""
@@ -5792,7 +5792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Asetukset"
#: gradientpage.ui
msgctxt ""
@@ -5810,7 +5810,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: hangulhanjaadddialog.ui
msgctxt ""
@@ -6161,7 +6161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Viivoitus"
#: hatchpage.ui
msgctxt ""
@@ -6233,7 +6233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background Color"
-msgstr ""
+msgstr "Taustaväri"
#: hatchpage.ui
msgctxt ""
@@ -6242,7 +6242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Asetukset"
#: hatchpage.ui
msgctxt ""
@@ -6260,7 +6260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: hyperlinkdialog.ui
msgctxt ""
@@ -6269,7 +6269,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Linkki"
#: hyperlinkdialog.ui
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link Type"
-msgstr ""
+msgstr "Linkin tyyppi"
#: hyperlinkinternetpage.ui
msgctxt ""
@@ -7980,7 +7980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Tyyli"
#: menuassignpage.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons & Text"
-msgstr ""
+msgstr "Kuvakkeet ja teksti"
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons"
-msgstr ""
+msgstr "Kuvakkeet"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Teksti"
#: menuassignpage.ui
msgctxt ""
@@ -8061,7 +8061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Palauta oletus"
#: menuassignpage.ui
msgctxt ""
@@ -8079,7 +8079,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove"
-msgstr ""
+msgstr "Poista"
#: menuassignpage.ui
msgctxt ""
@@ -8088,7 +8088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Command"
-msgstr ""
+msgstr "Lisää komento"
#: menuassignpage.ui
msgctxt ""
@@ -8097,7 +8097,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Lisää erotin"
#: menuassignpage.ui
msgctxt ""
@@ -8106,7 +8106,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Submenu"
-msgstr ""
+msgstr "Lisää alavalikko"
#: menuassignpage.ui
msgctxt ""
@@ -8466,7 +8466,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Numeroita nimittäjässä:"
#: numberingformatpage.ui
msgctxt ""
@@ -9267,7 +9267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Sarkainkohta:"
#: numberingpositionpage.ui
msgctxt ""
@@ -10036,7 +10036,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Arabic (1, 2, 3…)"
-msgstr ""
+msgstr "Arabialaiset (1, 2, 3…)"
#: optctlpage.ui
msgctxt ""
@@ -10045,7 +10045,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
-msgstr ""
+msgstr "Itäinen arabia (٣ ,٢ ,١…)"
#: optctlpage.ui
msgctxt ""
@@ -11026,7 +11026,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit Available language modules"
-msgstr ""
+msgstr "Muokkaa käytettävissä olevia kielimoduuleja"
#: optlingupage.ui
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit User-defined dictionaries"
-msgstr ""
+msgstr "Muokkaa omia sanakirjoja"
#: optlingupage.ui
msgctxt ""
@@ -11107,7 +11107,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit Options"
-msgstr ""
+msgstr "Muokkaa asetuksia"
#: optlingupage.ui
msgctxt ""
@@ -11431,7 +11431,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL is available for use."
-msgstr ""
+msgstr "OpenCL on käytettävissä."
#: optopenclpage.ui
msgctxt ""
@@ -11440,7 +11440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL is not used."
-msgstr ""
+msgstr "OpenCL ei ole käytössä."
#: optopenclpage.ui
msgctxt ""
@@ -12067,7 +12067,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Name/initials:"
-msgstr ""
+msgstr "Nimi/nimikirjaimet:"
#: optuserpage.ui
msgctxt ""
@@ -12139,7 +12139,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Nimi"
#: optuserpage.ui
msgctxt ""
@@ -12310,7 +12310,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Requires restart"
-msgstr ""
+msgstr "Vaatii uudelleenkäynnistyksen"
#: optviewpage.ui
msgctxt ""
@@ -12346,7 +12346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore OpenGL blacklist"
-msgstr ""
+msgstr "Älä huomioi OpenGL-estolistaa"
#: optviewpage.ui
msgctxt ""
@@ -12355,7 +12355,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Requires restart. Enabling this may expose driver bugs"
-msgstr ""
+msgstr "Vaatii uudelleenkäynnistyksen. Ajureissa olevat virheet voivat haitata käyttöä."
#: optviewpage.ui
msgctxt ""
@@ -12427,7 +12427,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaattinen"
#: optviewpage.ui
msgctxt ""
@@ -12436,7 +12436,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Hide"
-msgstr ""
+msgstr "Piilota"
#: optviewpage.ui
msgctxt ""
@@ -12445,7 +12445,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Show"
-msgstr ""
+msgstr "Näytä"
#: optviewpage.ui
msgctxt ""
@@ -12454,7 +12454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shortcuts in context menus:"
-msgstr ""
+msgstr "Kohdevalikoiden pikanäppäimet:"
#: optviewpage.ui
msgctxt ""
@@ -12490,7 +12490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Toolbar icon _size:"
-msgstr ""
+msgstr "Työkalupalkin kuvakekoko"
#: optviewpage.ui
msgctxt ""
@@ -12562,7 +12562,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Sifr"
-msgstr ""
+msgstr "Sifr"
#: optviewpage.ui
msgctxt ""
@@ -12571,7 +12571,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Breeze"
-msgstr ""
+msgstr "Breeze"
#: optviewpage.ui
msgctxt ""
@@ -12580,7 +12580,7 @@ msgctxt ""
"9\n"
"stringlist.text"
msgid "Tango Testing"
-msgstr ""
+msgstr "Tango-testaus"
#: optviewpage.ui
msgctxt ""
@@ -12616,7 +12616,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Extra Large"
-msgstr ""
+msgstr "Hyvin iso"
#: optviewpage.ui
msgctxt ""
@@ -12652,7 +12652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sidebar _icon size:"
-msgstr ""
+msgstr "Sivupalkin kuvakekoko:"
#: optviewpage.ui
msgctxt ""
@@ -12661,7 +12661,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaattinen"
#: optviewpage.ui
msgctxt ""
@@ -12670,7 +12670,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Small"
-msgstr ""
+msgstr "Pieni"
#: optviewpage.ui
msgctxt ""
@@ -12679,7 +12679,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Large"
-msgstr ""
+msgstr "Suuri"
#: optviewpage.ui
msgctxt ""
@@ -12688,7 +12688,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Notebookbar icon size:"
-msgstr ""
+msgstr "Lehtiöpalkin kuvakekoko:"
#: optviewpage.ui
msgctxt ""
@@ -12697,7 +12697,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaattinen"
#: optviewpage.ui
msgctxt ""
@@ -12706,7 +12706,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Small"
-msgstr ""
+msgstr "Pieni"
#: optviewpage.ui
msgctxt ""
@@ -12715,7 +12715,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Large"
-msgstr ""
+msgstr "Suuri"
#: optviewpage.ui
msgctxt ""
@@ -12967,7 +12967,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page numbers:"
-msgstr ""
+msgstr "Sivunumerot:"
#: pageformatpage.ui
msgctxt ""
@@ -13450,7 +13450,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.15 Lines"
-msgstr ""
+msgstr "Riviväli 1,15"
#: paraindentspacing.ui
msgctxt ""
@@ -13459,7 +13459,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "Riviväli 1,5"
#: paraindentspacing.ui
msgctxt ""
@@ -13468,7 +13468,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Riviväli 2"
#: paraindentspacing.ui
msgctxt ""
@@ -13477,7 +13477,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Suhteellinen"
#: paraindentspacing.ui
msgctxt ""
@@ -13486,7 +13486,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Vähintään"
#: paraindentspacing.ui
msgctxt ""
@@ -13495,7 +13495,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Riviväli"
#: paratabspage.ui
msgctxt ""
@@ -13648,7 +13648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "points"
-msgstr ""
+msgstr "pisteet"
#: paratabspage.ui
msgctxt ""
@@ -13657,7 +13657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "dashes"
-msgstr ""
+msgstr "katkoviivat"
#: paratabspage.ui
msgctxt ""
@@ -13666,7 +13666,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "underscores"
-msgstr ""
+msgstr "alaviivat"
#: password.ui
msgctxt ""
@@ -13792,7 +13792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Modify"
-msgstr ""
+msgstr "Muokkaa"
#: patterntabpage.ui
msgctxt ""
@@ -13801,7 +13801,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern"
-msgstr ""
+msgstr "Kuvio"
#: patterntabpage.ui
msgctxt ""
@@ -13810,7 +13810,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pattern Editor:"
-msgstr ""
+msgstr "Kuvioeditori:"
#: patterntabpage.ui
msgctxt ""
@@ -13819,7 +13819,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Pattern Editor"
-msgstr ""
+msgstr "Kuvioeditori"
#: patterntabpage.ui
msgctxt ""
@@ -13828,7 +13828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Foreground Color:"
-msgstr ""
+msgstr "Edustan väri:"
#: patterntabpage.ui
msgctxt ""
@@ -13837,7 +13837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background Color:"
-msgstr ""
+msgstr "Taustan väri:"
#: patterntabpage.ui
msgctxt ""
@@ -13846,7 +13846,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Asetukset"
#: patterntabpage.ui
msgctxt ""
@@ -13855,7 +13855,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "Esimerkki"
#: patterntabpage.ui
msgctxt ""
@@ -13864,7 +13864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Esikatselu"
#: percentdialog.ui
msgctxt ""
@@ -14764,7 +14764,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Interactive Screenshot Annotation"
-msgstr ""
+msgstr "Merkintöjen lisääminen kuvaruutukaappaukseen"
#: screenshotannotationdialog.ui
msgctxt ""
@@ -14773,7 +14773,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Screenshot..."
-msgstr ""
+msgstr "Tallenna kaappaus..."
#: screenshotannotationdialog.ui
msgctxt ""
@@ -14782,7 +14782,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Click the widgets to add annotation:"
-msgstr ""
+msgstr "Napsauta elementtiä korostuksen lisäämiseksi:"
#: screenshotannotationdialog.ui
msgctxt ""
@@ -14791,7 +14791,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paste the following markup into the help file:"
-msgstr ""
+msgstr "Liitä seuraava koodinpätkä ohjetiedostoon:"
#: scriptorganizer.ui
msgctxt ""
@@ -15034,7 +15034,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ctrl-click required _to follow links"
-msgstr ""
+msgstr "Ctrl-napsautus linkkien avaamiseen"
#: securityoptionsdialog.ui
msgctxt ""
@@ -16240,7 +16240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Drawing Object Text"
-msgstr ""
+msgstr "Piirrosobjektin teksti"
#: textattrtabpage.ui
msgctxt ""
@@ -16267,7 +16267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Shape Text"
-msgstr ""
+msgstr "Mukautetun muodon teksti"
#: textattrtabpage.ui
msgctxt ""
@@ -16456,7 +16456,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Page Style"
-msgstr ""
+msgstr "Sivutyyli"
#: textflowpage.ui
msgctxt ""
@@ -17140,7 +17140,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Variable"
-msgstr ""
+msgstr "Muuttuja"
#: zoomdialog.ui
msgctxt ""
@@ -17185,7 +17185,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Sarakkeet"
#: zoomdialog.ui
msgctxt ""
diff --git a/source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 19f727a0731..3db92171a90 100644
--- a/source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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: 2013-06-18 06:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 15:17+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1371536724.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487431047.000000\n"
#: Options.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id0603200910430845\n"
"help.text"
msgid "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameters</link>."
-msgstr ""
+msgstr "Riippumatta siitä käytetäänkö DEPS- vai SCO-menetelmää, lähdetään liikkeelle Työkalut - Ratkaisin -toiminnolla. Valitaan optimoitava solu, optimoinnin suunta (minimointi tai maksimointi) ja solut, joita muokataan tavoitteen saavuttamiseksi. Lopuksi siirrytään asetuksiin ja valitaan käytettävä ratkaisin sekä tarvittaessa säädetään <link href=\"com.sun.star.comp.Calc.NLPSolver/Options.xhp\">parameterit</link> ohjeen mukaisesti."
#: Usage.xhp
msgctxt ""
diff --git a/source/fi/svx/source/dialog.po b/source/fi/svx/source/dialog.po
index cb7a72bad73..3bd3908c2d4 100644
--- a/source/fi/svx/source/dialog.po
+++ b/source/fi/svx/source/dialog.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-12-31 11:58+0000\n"
+"PO-Revision-Date: 2017-02-18 20:16+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1483185535.000000\n"
+"X-POOTLE-MTIME: 1487449009.000000\n"
#: SafeMode.src
msgctxt ""
@@ -2789,7 +2789,7 @@ msgctxt ""
"RID_SVXSTR_HATCH9\n"
"string.text"
msgid "Black 0 Degrees"
-msgstr ""
+msgstr "Musta 0 astetta"
#: sdstring.src
msgctxt ""
@@ -2805,7 +2805,7 @@ msgctxt ""
"RID_SVXSTR_BMP0\n"
"string.text"
msgid "Empty"
-msgstr ""
+msgstr "Tyhjä"
#: sdstring.src
msgctxt ""
@@ -3576,7 +3576,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERY_INPROGRESS\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION on aloittanut asiakirjojesi palautuksen. Palautus saattaa kestää jonkin aikaa, riippuen asiakirjojen koosta."
#: sdstring.src
msgctxt ""
@@ -3584,7 +3584,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERYONLY_FINISH_DESCR\n"
"string.text"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
-msgstr ""
+msgstr "Asiakirjojesi palautus on suoritettu. Paina 'Lopeta' nähdäksesi asiakirjasi."
#: sdstring.src
msgctxt ""
@@ -3617,7 +3617,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: spacing.src
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"Extra Small (1/16\")\n"
"itemlist.text"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Erittäin pieni (1/16\")"
#: spacing.src
msgctxt ""
@@ -3635,7 +3635,7 @@ msgctxt ""
"Small (1/8\")\n"
"itemlist.text"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Pieni (1/8\")"
#: spacing.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Pienehkö (1/4\")"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Keskisuuri (3/8\")"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Suurehko (1/2\")"
#: spacing.src
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"Large (3/4\")\n"
"itemlist.text"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Suuri (3/4\")"
#: spacing.src
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Extra Large (1\")\n"
"itemlist.text"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Erittäin suuri (1\")"
#: srchdlg.src
msgctxt ""
@@ -7400,7 +7400,7 @@ msgctxt ""
"RID_SUBSETSTR_ADLAM\n"
"string.text"
msgid "Adlam"
-msgstr ""
+msgstr "Adlam"
#: ucsubset.src
msgctxt ""
@@ -7409,7 +7409,7 @@ msgctxt ""
"RID_SUBSETSTR_BHAIKSUKI\n"
"string.text"
msgid "Bhaiksuki"
-msgstr ""
+msgstr "Bhaiksuki"
#: ucsubset.src
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_C\n"
"string.text"
msgid "Cyrillic Extended-C"
-msgstr ""
+msgstr "Kyrillisiä (laajennus C)"
#: ucsubset.src
msgctxt ""
@@ -7427,7 +7427,7 @@ msgctxt ""
"RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT\n"
"string.text"
msgid "Glagolitic Supplement"
-msgstr ""
+msgstr "Glagoliittinen (laajennus)"
#: ucsubset.src
msgctxt ""
@@ -7436,7 +7436,7 @@ msgctxt ""
"RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION\n"
"string.text"
msgid "Ideographic Symbols and Punctuation"
-msgstr ""
+msgstr "Ideografisia symboleita ja välimerkkejä"
#: ucsubset.src
msgctxt ""
@@ -7445,7 +7445,7 @@ msgctxt ""
"RID_SUBSETSTR_MARCHEN\n"
"string.text"
msgid "Marchen"
-msgstr ""
+msgstr "Marchen"
#: ucsubset.src
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n"
"string.text"
msgid "Mongolian Supplement"
-msgstr ""
+msgstr "Lisää mongolin merkkejä"
#: ucsubset.src
msgctxt ""
@@ -7463,7 +7463,7 @@ msgctxt ""
"RID_SUBSETSTR_NEWA\n"
"string.text"
msgid "Newa"
-msgstr ""
+msgstr "Newa"
#: ucsubset.src
msgctxt ""
@@ -7472,7 +7472,7 @@ msgctxt ""
"RID_SUBSETSTR_OSAGE\n"
"string.text"
msgid "Osage"
-msgstr ""
+msgstr "Osage"
#: ucsubset.src
msgctxt ""
@@ -7481,7 +7481,7 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT\n"
"string.text"
msgid "Tangut"
-msgstr ""
+msgstr "Tanguutti"
#: ucsubset.src
msgctxt ""
@@ -7490,4 +7490,4 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT_COMPONENTS\n"
"string.text"
msgid "Tangut Components"
-msgstr ""
+msgstr "Tanguutin komponentteja"
diff --git a/source/fi/svx/source/src.po b/source/fi/svx/source/src.po
index eb4b5d6bf4b..94f9b6e5770 100644
--- a/source/fi/svx/source/src.po
+++ b/source/fi/svx/source/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-04 21:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 19:58+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467667874.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487447888.000000\n"
#: errtxt.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"ERRCODE_CLASS_READ\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Lukuvirhe"
#: errtxt.src
msgctxt ""
diff --git a/source/fi/svx/source/stbctrls.po b/source/fi/svx/source/stbctrls.po
index 72169e53751..bb83e163ceb 100644
--- a/source/fi/svx/source/stbctrls.po
+++ b/source/fi/svx/source/stbctrls.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-04 21:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 19:59+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467667878.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487447962.000000\n"
#: stbctrls.src
msgctxt ""
@@ -251,7 +251,7 @@ msgctxt ""
"RID_SIDEBAR_EMPTY_PANEL_TEXT\n"
"string.text"
msgid "Properties for the task that you are performing are not available for the current selection"
-msgstr ""
+msgstr "Nyt työn alla olevalle tehtävälle ei ole saatavilla muokattavia ominaisuuksia."
#: stbctrls.src
msgctxt ""
diff --git a/source/fi/svx/source/tbxctrls.po b/source/fi/svx/source/tbxctrls.po
index e303aa93649..6404f002a57 100644
--- a/source/fi/svx/source/tbxctrls.po
+++ b/source/fi/svx/source/tbxctrls.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-14 17:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 19:58+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468516611.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487447935.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Ei täyttöä"
#: tbcontrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_TRANSPARENT\n"
"string.text"
msgid "Transparent"
-msgstr ""
+msgstr "Läpinäkyvä"
#: tbcontrl.src
msgctxt ""
@@ -577,7 +577,7 @@ msgctxt ""
"RID_SVX_PRESET_RENAME\n"
"menuitem.text"
msgid "Rename"
-msgstr ""
+msgstr "Nimeä uudelleen"
#: tbcontrl.src
msgctxt ""
@@ -586,7 +586,7 @@ msgctxt ""
"RID_SVX_PRESET_DELETE\n"
"menuitem.text"
msgid "Delete"
-msgstr ""
+msgstr "Poista"
#: tbcontrl.src
msgctxt ""
@@ -618,7 +618,7 @@ msgctxt ""
"RID_SVXSTR_BY_AUTHOR\n"
"string.text"
msgid "By author"
-msgstr ""
+msgstr "Tekijän mukaan"
#: tbcontrl.src
msgctxt ""
@@ -682,7 +682,7 @@ msgctxt ""
"RID_SVXSTR_CUSTOM_PAL\n"
"string.text"
msgid "custom"
-msgstr ""
+msgstr "mukautettu"
#: tbcontrl.src
msgctxt ""
diff --git a/source/fi/sw/source/core/undo.po b/source/fi/sw/source/core/undo.po
index 35a0c2edeb0..59b3e602fc1 100644
--- a/source/fi/sw/source/core/undo.po
+++ b/source/fi/sw/source/core/undo.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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: 2014-06-24 18:42+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 13:14+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1403635326.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487510059.000000\n"
#: undo.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_CREATE\n"
"string.text"
msgid "Create table style: $1"
-msgstr ""
+msgstr "Luo taulukkotyyli: $1"
#: undo.src
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_DELETE\n"
"string.text"
msgid "Delete table style: $1"
-msgstr ""
+msgstr "Poista taulukkotyyli: $1"
#: undo.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_UPDATE\n"
"string.text"
msgid "Update table style: $1"
-msgstr ""
+msgstr "Päivitä taulukkotyyli: $1"
#: undo.src
msgctxt ""
diff --git a/source/fi/sw/source/core/unocore.po b/source/fi/sw/source/core/unocore.po
index e306254ae11..0c8c1c0eb43 100644
--- a/source/fi/sw/source/core/unocore.po
+++ b/source/fi/sw/source/core/unocore.po
@@ -4,7 +4,7 @@ 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-07-09 07:15+0000\n"
+"PO-Revision-Date: 2017-02-19 13:13+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468048531.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487509994.000000\n"
#: unocore.src
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"STR_STYLE_FAMILY_CELL\n"
"string.text"
msgid "Cell"
-msgstr ""
+msgstr "Solu"
diff --git a/source/fi/sw/source/ui/app.po b/source/fi/sw/source/ui/app.po
index 3f476aca0f2..55ea63aa348 100644
--- a/source/fi/sw/source/ui/app.po
+++ b/source/fi/sw/source/ui/app.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-07-09 07:28+0000\n"
+"PO-Revision-Date: 2017-02-19 13:57+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468049334.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487512625.000000\n"
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_PARAGRAPHSTYLEFAMILY\n"
"string.text"
msgid "Paragraph Styles"
-msgstr ""
+msgstr "Kappaletyylit"
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_CHARACTERSTYLEFAMILY\n"
"string.text"
msgid "Character Styles"
-msgstr ""
+msgstr "Merkkityylit"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_FRAMESTYLEFAMILY\n"
"string.text"
msgid "Frame Styles"
-msgstr ""
+msgstr "Kehysten tyylit"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_PAGESTYLEFAMILY\n"
"string.text"
msgid "Page Styles"
-msgstr ""
+msgstr "Sivun tyylit"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_LISTSTYLEFAMILY\n"
"string.text"
msgid "List Styles"
-msgstr ""
+msgstr "Luettelotyylit"
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TABLESTYLEFAMILY\n"
"string.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Taulukkotyylit"
#: app.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Kaikki tyylit"
#: app.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automaattinen"
#: app.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"Text Styles\n"
"itemlist.text"
msgid "Text Styles"
-msgstr ""
+msgstr "Tekstityylit"
#: app.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"Chapter Styles\n"
"itemlist.text"
msgid "Chapter Styles"
-msgstr ""
+msgstr "Luvun tyylit"
#: app.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"List Styles\n"
"itemlist.text"
msgid "List Styles"
-msgstr ""
+msgstr "Luettelotyylit"
#: app.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"Index Styles\n"
"itemlist.text"
msgid "Index Styles"
-msgstr ""
+msgstr "Hakemistotyylit"
#: app.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"Special Styles\n"
"itemlist.text"
msgid "Special Styles"
-msgstr ""
+msgstr "Erikoistyylit"
#: app.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"HTML Styles\n"
"itemlist.text"
msgid "HTML Styles"
-msgstr ""
+msgstr "HTML-tyylit"
#: app.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"Conditional Styles\n"
"itemlist.text"
msgid "Conditional Styles"
-msgstr ""
+msgstr "Ehdolliset tyylit"
#: app.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Kaikki"
#: app.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Kaikki"
#: app.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Kaikki"
#: app.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Kaikki"
#: app.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -321,7 +321,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -339,7 +339,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Kaikki"
#: app.src
msgctxt ""
@@ -348,7 +348,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Piilotetut tyylit"
#: app.src
msgctxt ""
@@ -357,7 +357,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Käytetyt tyylit"
#: app.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Mukautetut tyylit"
#: app.src
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"STR_COMCORE_READERROR\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Lukuvirhe"
#: error.src
msgctxt ""
diff --git a/source/fi/sw/source/ui/index.po b/source/fi/sw/source/ui/index.po
index e16ecfe6cf0..dc85cce4a20 100644
--- a/source/fi/sw/source/ui/index.po
+++ b/source/fi/sw/source/ui/index.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-04 21:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 13:19+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467668479.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487510395.000000\n"
#: cnttab.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"%PRODUCTNAME Math\n"
"itemlist.text"
msgid "%PRODUCTNAME Math"
-msgstr ""
+msgstr "%PRODUCTNAME Math"
#: cnttab.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"%PRODUCTNAME Chart\n"
"itemlist.text"
msgid "%PRODUCTNAME Chart"
-msgstr ""
+msgstr "%PRODUCTNAME Chart"
#: cnttab.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"%PRODUCTNAME Calc\n"
"itemlist.text"
msgid "%PRODUCTNAME Calc"
-msgstr ""
+msgstr "%PRODUCTNAME Calc"
#: cnttab.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"%PRODUCTNAME Draw/%PRODUCTNAME Impress\n"
"itemlist.text"
msgid "%PRODUCTNAME Draw/%PRODUCTNAME Impress"
-msgstr ""
+msgstr "%PRODUCTNAME Draw/%PRODUCTNAME Impress"
#: cnttab.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"Other OLE Objects\n"
"itemlist.text"
msgid "Other OLE Objects"
-msgstr ""
+msgstr "Muut OLE-objektit"
#: cnttab.src
msgctxt ""
diff --git a/source/fi/sw/source/ui/misc.po b/source/fi/sw/source/ui/misc.po
index 06c752cae91..291e678d0ca 100644
--- a/source/fi/sw/source/ui/misc.po
+++ b/source/fi/sw/source/ui/misc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-04 21:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 14:00+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467668500.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487512841.000000\n"
#: glossary.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: numberingtypelistbox.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Bullet\n"
"itemlist.text"
msgid "Bullet"
-msgstr ""
+msgstr "Luettelomerkki"
#: numberingtypelistbox.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Graphics\n"
"itemlist.text"
msgid "Graphics"
-msgstr ""
+msgstr "Kuvat"
#: numberingtypelistbox.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"1, 2, 3, ...\n"
"itemlist.text"
msgid "1, 2, 3, ..."
-msgstr ""
+msgstr "1, 2, 3, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"A, B, C, ...\n"
"itemlist.text"
msgid "A, B, C, ..."
-msgstr ""
+msgstr "A, B, C, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"a, b, c, ...\n"
"itemlist.text"
msgid "a, b, c, ..."
-msgstr ""
+msgstr "a, b, c, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"I, II, III, ...\n"
"itemlist.text"
msgid "I, II, III, ..."
-msgstr ""
+msgstr "I, II, III, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"i, ii, iii, ...\n"
"itemlist.text"
msgid "i, ii, iii, ..."
-msgstr ""
+msgstr "i, ii, iii, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"A, .., AA, .., AAA, ...\n"
"itemlist.text"
msgid "A, .., AA, .., AAA, ..."
-msgstr ""
+msgstr "A, .., AA, .., AAA, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"a, .., aa, .., aaa, ...\n"
"itemlist.text"
msgid "a, .., aa, .., aaa, ..."
-msgstr ""
+msgstr "a, .., aa, .., aaa, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Paikallinen numerointi"
#: numberingtypelistbox.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (bulgaria)"
#: numberingtypelistbox.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (bulgaria)"
#: numberingtypelistbox.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (bulgaria)"
#: numberingtypelistbox.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (bulgaria)"
#: numberingtypelistbox.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (venäjä)"
#: numberingtypelistbox.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (venäjä)"
#: numberingtypelistbox.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (venäjä)"
#: numberingtypelistbox.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (venäjä)"
#: numberingtypelistbox.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (serbia)"
#: numberingtypelistbox.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (serbia)"
#: numberingtypelistbox.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (serbia)"
#: numberingtypelistbox.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (serbia)"
#: numberingtypelistbox.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Α, Β, Γ, ... (Greek Upper Letter)\n"
"itemlist.text"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
-msgstr ""
+msgstr "Α, Β, Γ, ... (kreikkalaiset isot kirjaimet)"
#: numberingtypelistbox.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"α, β, γ, ... (Greek Lower Letter)\n"
"itemlist.text"
msgid "α, β, γ, ... (Greek Lower Letter)"
-msgstr ""
+msgstr "α, β, γ, ... (kreikkalaiset pienet kirjaimet)"
#: swruler.src
msgctxt ""
diff --git a/source/fi/sw/source/ui/sidebar.po b/source/fi/sw/source/ui/sidebar.po
index f3dd0df480c..d97c6491424 100644
--- a/source/fi/sw/source/ui/sidebar.po
+++ b/source/fi/sw/source/ui/sidebar.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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: 2013-11-26 15:34+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 13:17+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385480058.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487510257.000000\n"
#: PagePropertyPanel.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_LEFT\n"
"string.text"
msgid "Left: "
-msgstr ""
+msgstr "Vasen: "
#: PagePropertyPanel.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_RIGHT\n"
"string.text"
msgid ". Right: "
-msgstr ""
+msgstr ". Oikea: "
#: PagePropertyPanel.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_INNER\n"
"string.text"
msgid "Inner: "
-msgstr ""
+msgstr "Sisempi: "
#: PagePropertyPanel.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_OUTER\n"
"string.text"
msgid ". Outer: "
-msgstr ""
+msgstr ". Ulompi: "
#: PagePropertyPanel.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_TOP\n"
"string.text"
msgid ". Top: "
-msgstr ""
+msgstr ". Yläreuna: "
#: PagePropertyPanel.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_BOT\n"
"string.text"
msgid ". Bottom: "
-msgstr ""
+msgstr ". Alareuna: "
diff --git a/source/fi/sw/source/ui/utlui.po b/source/fi/sw/source/ui/utlui.po
index 4e6857a841d..fce204fe189 100644
--- a/source/fi/sw/source/ui/utlui.po
+++ b/source/fi/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-07-09 07:22+0000\n"
+"PO-Revision-Date: 2017-02-19 13:44+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468048953.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487511858.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"STR_TABSTYLE_3D\n"
"string.text"
msgid "3D"
-msgstr ""
+msgstr "Kolmiulotteinen"
#: poolfmt.src
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK1\n"
"string.text"
msgid "Black 1"
-msgstr ""
+msgstr "Musta 1"
#: poolfmt.src
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK2\n"
"string.text"
msgid "Black 2"
-msgstr ""
+msgstr "Musta 2"
#: poolfmt.src
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"STR_TABSTYLE_BLUE\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Sininen"
#: poolfmt.src
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"STR_TABSTYLE_BROWN\n"
"string.text"
msgid "Brown"
-msgstr ""
+msgstr "Ruskea"
#: poolfmt.src
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY\n"
"string.text"
msgid "Currency"
-msgstr ""
+msgstr "Valuutta"
#: poolfmt.src
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_3D\n"
"string.text"
msgid "Currency 3D"
-msgstr ""
+msgstr "Valuutta kolmiulotteisena"
#: poolfmt.src
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_GRAY\n"
"string.text"
msgid "Currency Gray"
-msgstr ""
+msgstr "Valuutta harmaana"
#: poolfmt.src
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_LAVENDER\n"
"string.text"
msgid "Currency Lavender"
-msgstr ""
+msgstr "Valuutta laventelinvihreänä"
#: poolfmt.src
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_TURQUOISE\n"
"string.text"
msgid "Currency Turquoise"
-msgstr ""
+msgstr "Valuutta turkoosina"
#: poolfmt.src
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"STR_TABSTYLE_GRAY\n"
"string.text"
msgid "Gray"
-msgstr ""
+msgstr "Harmaa"
#: poolfmt.src
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"STR_TABSTYLE_GREEN\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Vihreä"
#: poolfmt.src
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"STR_TABSTYLE_LAVENDER\n"
"string.text"
msgid "Lavender"
-msgstr ""
+msgstr "Laventelinvihreä"
#: poolfmt.src
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"STR_TABSTYLE_RED\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Punainen"
#: poolfmt.src
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"STR_TABSTYLE_TURQUOISE\n"
"string.text"
msgid "Turquoise"
-msgstr ""
+msgstr "Turkoosi"
#: poolfmt.src
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"STR_TABSTYLE_YELLOW\n"
"string.text"
msgid "Yellow"
-msgstr ""
+msgstr "Keltainen"
#: utlui.src
msgctxt ""
diff --git a/source/fi/sw/source/uibase/ribbar.po b/source/fi/sw/source/uibase/ribbar.po
index fa122d9d853..6995ef04a14 100644
--- a/source/fi/sw/source/uibase/ribbar.po
+++ b/source/fi/sw/source/uibase/ribbar.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-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-07-09 07:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 13:16+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468048564.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487510190.000000\n"
#: inputwin.src
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"STR_FORMULA_CALC\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Funktiot"
#: inputwin.src
msgctxt ""
@@ -282,7 +282,7 @@ msgctxt ""
"STR_FORMULA_CANCEL\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Peruuta"
#: inputwin.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"STR_FORMULA_APPLY\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Käytä"
#: inputwin.src
msgctxt ""
diff --git a/source/fi/sw/source/uibase/utlui.po b/source/fi/sw/source/uibase/utlui.po
index f2d12c9f82a..86e50ae80d0 100644
--- a/source/fi/sw/source/uibase/utlui.po
+++ b/source/fi/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-07-09 07:21+0000\n"
+"PO-Revision-Date: 2017-02-19 13:16+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468048905.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487510215.000000\n"
#: attrdesc.src
msgctxt ""
@@ -1816,7 +1816,7 @@ msgctxt ""
"~Zoom\n"
"itemlist.text"
msgid "~Zoom"
-msgstr ""
+msgstr "Zoomaus"
#: unotools.src
msgctxt ""
@@ -1825,7 +1825,7 @@ msgctxt ""
"~Upwards\n"
"itemlist.text"
msgid "~Upwards"
-msgstr ""
+msgstr "Ylös"
#: unotools.src
msgctxt ""
@@ -1834,4 +1834,4 @@ msgctxt ""
"Do~wnwards\n"
"itemlist.text"
msgid "Do~wnwards"
-msgstr ""
+msgstr "Alas"
diff --git a/source/fi/sw/uiconfig/swriter/ui.po b/source/fi/sw/uiconfig/swriter/ui.po
index b5579386ef3..d2eed17c14a 100644
--- a/source/fi/sw/uiconfig/swriter/ui.po
+++ b/source/fi/sw/uiconfig/swriter/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-11-16 17:00+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 15:19+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1479315657.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487517568.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Numerointi"
#: bulletsandnumbering.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Customize"
-msgstr ""
+msgstr "Mukauta"
#: businessdatapage.ui
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Lisää"
#: cardmediumpage.ui
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Linkki"
#: characterproperties.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Linkki"
#: charurlpage.ui
msgctxt ""
@@ -3155,7 +3155,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Lisää"
#: envaddresspage.ui
msgctxt ""
@@ -5175,7 +5175,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Linkki"
#: framedialog.ui
msgctxt ""
@@ -5436,7 +5436,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Vasemmalta oikealle (pysty)"
#: frmaddpage.ui
msgctxt ""
@@ -5445,7 +5445,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Käytä ensisijaista objektiasetusta"
#: frmtypepage.ui
msgctxt ""
@@ -5760,7 +5760,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Go to Page"
-msgstr ""
+msgstr "Siirry sivulle"
#: gotopagedialog.ui
msgctxt ""
@@ -5769,7 +5769,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "of $1"
-msgstr ""
+msgstr "/ $1"
#: gotopagedialog.ui
msgctxt ""
@@ -5778,7 +5778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page:"
-msgstr ""
+msgstr "Sivu:"
#: indentpage.ui
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update entry from selection"
-msgstr ""
+msgstr "Päivitä merkintä valinnasta"
#: indexentry.ui
msgctxt ""
@@ -6156,7 +6156,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Change page number"
-msgstr ""
+msgstr "Muuta sivunumero"
#: insertbreak.ui
msgctxt ""
@@ -8775,7 +8775,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Vaihda pohjan näyttö"
#: navigatorpanel.ui
msgctxt ""
@@ -8784,7 +8784,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Navigation"
-msgstr ""
+msgstr "Siirtyminen"
#: navigatorpanel.ui
msgctxt ""
@@ -8793,7 +8793,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Back"
-msgstr ""
+msgstr "Edellinen"
#: navigatorpanel.ui
msgctxt ""
@@ -8802,7 +8802,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Forward"
-msgstr ""
+msgstr "Eteenpäin"
#: navigatorpanel.ui
msgctxt ""
@@ -8811,7 +8811,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Vetotila"
#: navigatorpanel.ui
msgctxt ""
@@ -8820,7 +8820,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Chapter"
-msgstr ""
+msgstr "Siirrä luku ylemmälle tasolle"
#: navigatorpanel.ui
msgctxt ""
@@ -8829,7 +8829,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Chapter"
-msgstr ""
+msgstr "Siirrä luku alemmalle tasolle"
#: navigatorpanel.ui
msgctxt ""
@@ -8838,7 +8838,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "List Box On/Off"
-msgstr ""
+msgstr "Luetteloruutu käytössä / poissa käytöstä"
#: navigatorpanel.ui
msgctxt ""
@@ -8847,7 +8847,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Content Navigation View"
-msgstr ""
+msgstr "Sisällön selailunäkymä"
#: navigatorpanel.ui
msgctxt ""
@@ -8856,7 +8856,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "Määritä muistutus"
#: navigatorpanel.ui
msgctxt ""
@@ -8865,7 +8865,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Header"
-msgstr ""
+msgstr "Ylätunniste"
#: navigatorpanel.ui
msgctxt ""
@@ -8874,7 +8874,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Footer"
-msgstr ""
+msgstr "Alatunniste"
#: navigatorpanel.ui
msgctxt ""
@@ -8883,7 +8883,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Anchor<->Text"
-msgstr ""
+msgstr "Ankkuri<->Teksti"
#: navigatorpanel.ui
msgctxt ""
@@ -8892,7 +8892,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Heading Levels Shown"
-msgstr ""
+msgstr "Otsikkotasojen näyttö"
#: navigatorpanel.ui
msgctxt ""
@@ -8901,7 +8901,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Level"
-msgstr ""
+msgstr "Korota tasoa"
#: navigatorpanel.ui
msgctxt ""
@@ -8910,7 +8910,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Level"
-msgstr ""
+msgstr "Alenna tasoa"
#: navigatorpanel.ui
msgctxt ""
@@ -8919,7 +8919,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Asiakirja"
#: navigatorpanel.ui
msgctxt ""
@@ -8928,7 +8928,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Aktiivinen ikkuna"
#: navigatorpanel.ui
msgctxt ""
@@ -8937,7 +8937,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Vaihda pohjan näyttö"
#: navigatorpanel.ui
msgctxt ""
@@ -8946,7 +8946,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Edit"
-msgstr ""
+msgstr "Muokkaa"
#: navigatorpanel.ui
msgctxt ""
@@ -8955,7 +8955,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update"
-msgstr ""
+msgstr "Päivitä"
#: navigatorpanel.ui
msgctxt ""
@@ -8964,7 +8964,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Lisää"
#: navigatorpanel.ui
msgctxt ""
@@ -8973,7 +8973,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Save Contents as well"
-msgstr ""
+msgstr "Tallenna myös sisältö"
#: navigatorpanel.ui
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Siirrä ylemmäs"
#: navigatorpanel.ui
msgctxt ""
@@ -8991,7 +8991,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Siirrä alemmas"
#: newuserindexdialog.ui
msgctxt ""
@@ -9027,7 +9027,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Tiedosto"
#: notebookbar.ui
msgctxt ""
@@ -9036,7 +9036,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Fontti"
#: notebookbar.ui
msgctxt ""
@@ -9045,7 +9045,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Fontti"
#: notebookbar.ui
msgctxt ""
@@ -9054,7 +9054,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outline"
-msgstr ""
+msgstr "Jäsennys"
#: notebookbar.ui
msgctxt ""
@@ -9072,7 +9072,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Vaakatasaus"
#: notebookbar.ui
msgctxt ""
@@ -9081,7 +9081,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Alignment"
-msgstr ""
+msgstr "Tasaus"
#: notebookbar.ui
msgctxt ""
@@ -9090,7 +9090,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Vertical Alignment"
-msgstr ""
+msgstr "Pystytasaus"
#: notebookbar.ui
msgctxt ""
@@ -9108,7 +9108,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Spacing"
-msgstr ""
+msgstr "Välistys"
#: notebookbar.ui
msgctxt ""
@@ -9126,7 +9126,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Lisää sisennystä"
#: notebookbar.ui
msgctxt ""
@@ -9135,7 +9135,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Vähennä sisennystä"
#: notebookbar.ui
msgctxt ""
@@ -9153,7 +9153,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Tyyli"
#: notebookbar.ui
msgctxt ""
@@ -9162,7 +9162,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Etsi"
#: notebookbar.ui
msgctxt ""
@@ -9171,7 +9171,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Etsi"
#: notebookbar.ui
msgctxt ""
@@ -9180,7 +9180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Aloitus"
#: notebookbar.ui
msgctxt ""
@@ -9189,7 +9189,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Break"
-msgstr ""
+msgstr "Vaihto"
#: notebookbar.ui
msgctxt ""
@@ -9198,7 +9198,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Gallery"
-msgstr ""
+msgstr "Galleria"
#: notebookbar.ui
msgctxt ""
@@ -9207,7 +9207,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Open Clip Art and Media Gallery"
-msgstr ""
+msgstr "Avaa leikekuva- ja mediagalleria"
#: notebookbar.ui
msgctxt ""
@@ -9216,7 +9216,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Symboli"
#: notebookbar.ui
msgctxt ""
@@ -9225,7 +9225,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basic"
-msgstr ""
+msgstr "Basic"
#: notebookbar.ui
msgctxt ""
@@ -9234,7 +9234,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Lisää ääni tai video"
#: notebookbar.ui
msgctxt ""
@@ -9243,7 +9243,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Muodot"
#: notebookbar.ui
msgctxt ""
@@ -9252,7 +9252,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Linkit"
#: notebookbar.ui
msgctxt ""
@@ -9261,7 +9261,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Teksti"
#: notebookbar.ui
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Fields"
-msgstr ""
+msgstr "Kentät"
#: notebookbar.ui
msgctxt ""
@@ -9279,7 +9279,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Lisää"
#: notebookbar.ui
msgctxt ""
@@ -9288,7 +9288,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sisennys"
#: notebookbar.ui
msgctxt ""
@@ -9297,7 +9297,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sisennys"
#: notebookbar.ui
msgctxt ""
@@ -9306,7 +9306,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Setup"
-msgstr ""
+msgstr "Asetukset"
#: notebookbar.ui
msgctxt ""
@@ -9315,7 +9315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page layout"
-msgstr ""
+msgstr "Sivun asettelu"
#: notebookbar.ui
msgctxt ""
@@ -9324,7 +9324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "References"
-msgstr ""
+msgstr "Viittaukset"
#: notebookbar.ui
msgctxt ""
@@ -9333,7 +9333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Tarkistus"
#: notebookbar.ui
msgctxt ""
@@ -9342,7 +9342,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Page View"
-msgstr ""
+msgstr "Sivunäkymä"
#: notebookbar.ui
msgctxt ""
@@ -9351,7 +9351,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document Area Elements"
-msgstr ""
+msgstr "Asiakirja-alueen elementit"
#: notebookbar.ui
msgctxt ""
@@ -9360,7 +9360,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Zoom"
-msgstr ""
+msgstr "Zoomaus"
#: notebookbar.ui
msgctxt ""
@@ -9369,7 +9369,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Näytä"
#: notebookbar.ui
msgctxt ""
@@ -9396,7 +9396,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Taulukko"
#: notebookbar.ui
msgctxt ""
@@ -9405,7 +9405,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Perusteet"
#: notebookbar.ui
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Ominaisuudet"
#: notebookbar.ui
msgctxt ""
@@ -9423,7 +9423,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Perusteet"
#: notebookbar.ui
msgctxt ""
@@ -9432,7 +9432,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Crop"
-msgstr ""
+msgstr "Rajaa"
#: notebookbar.ui
msgctxt ""
@@ -9441,7 +9441,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Kuva"
#: notebookbar_groups.ui
msgctxt ""
@@ -9450,7 +9450,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Oletus"
#: notebookbar_groups.ui
msgctxt ""
@@ -9459,7 +9459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Harmaasävy"
#: notebookbar_groups.ui
msgctxt ""
@@ -9468,7 +9468,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Black and White"
-msgstr ""
+msgstr "Mustavalkoinen"
#: notebookbar_groups.ui
msgctxt ""
@@ -9477,7 +9477,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Watermark"
-msgstr ""
+msgstr "Vesileima"
#: notebookbar_groups.ui
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness & Contrast"
-msgstr ""
+msgstr "-20% kirkkautta ja kontrastia"
#: notebookbar_groups.ui
msgctxt ""
@@ -9495,7 +9495,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness"
-msgstr ""
+msgstr "-20% kirkkautta"
#: notebookbar_groups.ui
msgctxt ""
@@ -9504,7 +9504,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Contrast"
-msgstr ""
+msgstr "-20% kontrastia"
#: notebookbar_groups.ui
msgctxt ""
@@ -9513,7 +9513,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "0% Brightness & Contrast"
-msgstr ""
+msgstr "0% kirkkautta ja kontrastia"
#: notebookbar_groups.ui
msgctxt ""
@@ -9522,7 +9522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness"
-msgstr ""
+msgstr "+20% kirkkautta"
#: notebookbar_groups.ui
msgctxt ""
@@ -9531,7 +9531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Contrast"
-msgstr ""
+msgstr "+20% kontrastia"
#: notebookbar_groups.ui
msgctxt ""
@@ -9540,7 +9540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness & Contrast"
-msgstr ""
+msgstr "+20% kirkkautta ja kontrastia"
#: notebookbar_groups.ui
msgctxt ""
@@ -9549,7 +9549,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Red"
-msgstr ""
+msgstr "Väritä punaiseksi"
#: notebookbar_groups.ui
msgctxt ""
@@ -9558,7 +9558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Blue"
-msgstr ""
+msgstr "Väritä siniseksi"
#: notebookbar_groups.ui
msgctxt ""
@@ -9567,7 +9567,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Green"
-msgstr ""
+msgstr "Väritä vihreäksi"
#: notebookbar_groups.ui
msgctxt ""
@@ -9576,7 +9576,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Orange"
-msgstr ""
+msgstr "Väritä oranssiksi"
#: notebookbar_groups.ui
msgctxt ""
@@ -9585,7 +9585,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hyperlinkki"
#: notebookbar_groups.ui
msgctxt ""
@@ -9594,7 +9594,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Alaviite"
#: notebookbar_groups.ui
msgctxt ""
@@ -9603,7 +9603,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Loppuviite"
#: notebookbar_groups.ui
msgctxt ""
@@ -9612,7 +9612,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Kirjanmerkki"
#: notebookbar_groups.ui
msgctxt ""
@@ -9621,7 +9621,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Ristiviite"
#: notebookbar_groups.ui
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Paragraph"
-msgstr ""
+msgstr "Oletus kappale"
#: notebookbar_groups.ui
msgctxt ""
@@ -9639,7 +9639,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Otsikko"
#: notebookbar_groups.ui
msgctxt ""
@@ -9648,7 +9648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr ""
+msgstr "Alaotsikko"
#: notebookbar_groups.ui
msgctxt ""
@@ -9657,7 +9657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Character"
-msgstr ""
+msgstr "Oletus merkki"
#: notebookbar_groups.ui
msgctxt ""
@@ -9666,7 +9666,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Painotus"
#: notebookbar_groups.ui
msgctxt ""
@@ -9675,7 +9675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Strong Emphasis"
-msgstr ""
+msgstr "Vahva painotus"
#: notebookbar_groups.ui
msgctxt ""
@@ -9684,7 +9684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: notebookbar_groups.ui
msgctxt ""
@@ -9693,7 +9693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Oletus"
#: notebookbar_groups.ui
msgctxt ""
@@ -9702,7 +9702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Tyyli 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -9711,7 +9711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Tyyli 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -9720,7 +9720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Tyyli 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -9729,7 +9729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Tyyli 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -9738,7 +9738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Lisää rivejä yläpuolelle"
#: notebookbar_groups.ui
msgctxt ""
@@ -9747,7 +9747,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Lisää rivejä alapuolelle"
#: notebookbar_groups.ui
msgctxt ""
@@ -9756,7 +9756,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Poista rivit"
#: notebookbar_groups.ui
msgctxt ""
@@ -9765,7 +9765,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Valitse rivit"
#: notebookbar_groups.ui
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Rivikorkeus..."
#: notebookbar_groups.ui
msgctxt ""
@@ -9783,7 +9783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Optimaalinen rivikorkeus"
#: notebookbar_groups.ui
msgctxt ""
@@ -9792,7 +9792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Jaa rivit tasaisesti"
#: notebookbar_groups.ui
msgctxt ""
@@ -9801,7 +9801,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Tiedosto"
#: notebookbar_groups.ui
msgctxt ""
@@ -9810,7 +9810,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Leikepöytä"
#: notebookbar_groups.ui
msgctxt ""
@@ -9819,7 +9819,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Tyyli"
#: notebookbar_groups.ui
msgctxt ""
@@ -9828,7 +9828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Teksti"
#: notebookbar_groups.ui
msgctxt ""
@@ -9837,7 +9837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Linkit"
#: notebookbar_groups.ui
msgctxt ""
@@ -9846,7 +9846,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Muodot"
#: notebookbar_groups.ui
msgctxt ""
@@ -9855,7 +9855,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Lisää"
#: notebookbar_groups.ui
msgctxt ""
@@ -9864,7 +9864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Tyyli"
#: notebookbar_groups.ui
msgctxt ""
@@ -9873,7 +9873,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rows"
-msgstr ""
+msgstr "Rivit"
#: notebookbar_groups.ui
msgctxt ""
@@ -9882,7 +9882,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Sarakkeet"
#: notebookbar_groups.ui
msgctxt ""
@@ -9891,7 +9891,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Taulukko"
#: notebookbar_groups.ui
msgctxt ""
@@ -9900,7 +9900,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Tyyli"
#: notebookbar_groups.ui
msgctxt ""
@@ -9909,7 +9909,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Palauta"
#: notebookbar_groups.ui
msgctxt ""
@@ -9918,7 +9918,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Rivitys"
#: notebookbar_groups.ui
msgctxt ""
@@ -9927,7 +9927,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Lukitse"
#: notebookbar_groups.ui
msgctxt ""
@@ -9936,7 +9936,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Kuva"
#: notebookbar_groups.ui
msgctxt ""
@@ -9945,7 +9945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ei mitään"
#: notebookbar_groups.ui
msgctxt ""
@@ -9954,7 +9954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Optimaalinen"
#: notebookbar_groups.ui
msgctxt ""
@@ -9963,7 +9963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Ympärillä"
#: notebookbar_groups.ui
msgctxt ""
@@ -9972,7 +9972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Ennen"
#: notebookbar_groups.ui
msgctxt ""
@@ -9981,7 +9981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Jälkeen"
#: notebookbar_groups.ui
msgctxt ""
@@ -9990,7 +9990,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "Läpi"
#: notebookbar_groups.ui
msgctxt ""
@@ -9999,7 +9999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Ääriviiva"
#: notebookbar_groups.ui
msgctxt ""
@@ -10008,7 +10008,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Muokkaa ääriviivaa"
#: notebookbar_single.ui
msgctxt ""
@@ -10017,7 +10017,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Vaakatasaus"
#: notebookbar_single.ui
msgctxt ""
@@ -10026,7 +10026,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sisennys"
#: notebookbar_single.ui
msgctxt ""
@@ -10035,7 +10035,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sisennys"
#: numberingnamedialog.ui
msgctxt ""
@@ -10386,7 +10386,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Linkki"
#: objectdialog.ui
msgctxt ""
@@ -11344,7 +11344,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Insertions"
-msgstr ""
+msgstr "Lisäysten väri"
#: optredlinepage.ui
msgctxt ""
@@ -11389,7 +11389,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Deletions"
-msgstr ""
+msgstr "Poistojen väri"
#: optredlinepage.ui
msgctxt ""
@@ -11434,7 +11434,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Changed Attributes"
-msgstr ""
+msgstr "Muutettujen ominaisuuksien väri"
#: optredlinepage.ui
msgctxt ""
@@ -11461,7 +11461,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Mark"
-msgstr ""
+msgstr "Merkinnän väri"
#: optredlinepage.ui
msgctxt ""
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 72fa8592a00..3aed4f0e31d 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2016-12-24 01:16+0000\n"
+"PO-Revision-Date: 2017-02-17 23:41+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1482542161.000000\n"
+"X-POOTLE-MTIME: 1487374888.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -15477,7 +15477,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Font Name"
-msgstr "Ainm a' chruth-chlò"
+msgstr "Ainm a’ chrutha-chlò"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/gd/svx/source/dialog.po b/source/gd/svx/source/dialog.po
index 8db12c76d26..f7fa2115ce8 100644
--- a/source/gd/svx/source/dialog.po
+++ b/source/gd/svx/source/dialog.po
@@ -4,7 +4,7 @@ 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-07-04 23:09+0000\n"
+"PO-Revision-Date: 2017-02-17 23:14+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467673773.000000\n"
+"X-POOTLE-MTIME: 1487373298.000000\n"
#: SafeMode.src
msgctxt ""
@@ -7194,7 +7194,7 @@ msgctxt ""
"RID_SUBSETSTR_OLD_NORTH_ARABIAN\n"
"string.text"
msgid "Old North Arabian"
-msgstr "Seann-Arabais Thuathadh"
+msgstr "Seann-Arabais Thuathach"
#: ucsubset.src
msgctxt ""
diff --git a/source/gd/svx/source/tbxctrls.po b/source/gd/svx/source/tbxctrls.po
index 93abf85d665..ed2304724a4 100644
--- a/source/gd/svx/source/tbxctrls.po
+++ b/source/gd/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ 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-07-04 23:13+0000\n"
+"PO-Revision-Date: 2017-02-17 23:41+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1467674000.000000\n"
+"X-POOTLE-MTIME: 1487374901.000000\n"
#: colrctrl.src
msgctxt ""
@@ -667,7 +667,7 @@ msgctxt ""
"RID_SVXSTR_CHARFONTNAME\n"
"string.text"
msgid "Font Name"
-msgstr "Ainm a' chruth-chlò"
+msgstr "Ainm a’ chrutha-chlò"
#: tbcontrl.src
msgctxt ""
@@ -675,7 +675,7 @@ msgctxt ""
"RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE\n"
"string.text"
msgid "Font Name. The current font is not available and will be substituted."
-msgstr "Ainm a' chruth-chlò. Chan eil am fear làithreach ri fhaighinn is thèid cruth-clò eile a chur 'na àite."
+msgstr "Ainm a’ chrutha-chlò. Chan eil am fear làithreach ri fhaighinn is thèid cruth-clò eile a chur ’na àite."
#: tbcontrl.src
msgctxt ""
diff --git a/source/gl/extensions/source/propctrlr.po b/source/gl/extensions/source/propctrlr.po
index 8afe9d2bd5b..d2ec5d99c97 100644
--- a/source/gl/extensions/source/propctrlr.po
+++ b/source/gl/extensions/source/propctrlr.po
@@ -4,8 +4,8 @@ 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: 2017-01-11 20:20+0000\n"
-"Last-Translator: Antón Méixome <meixome@certima.net>\n"
+"PO-Revision-Date: 2017-02-19 22:24+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484166057.000000\n"
+"X-POOTLE-MTIME: 1487543084.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -2191,7 +2191,7 @@ msgctxt ""
"SQL command\n"
"itemlist.text"
msgid "SQL command"
-msgstr ""
+msgstr "Orde SQL"
#: formres.src
msgctxt ""
@@ -2232,7 +2232,7 @@ msgctxt ""
"3D\n"
"itemlist.text"
msgid "3D"
-msgstr ""
+msgstr "3D"
#: formres.src
msgctxt ""
@@ -2241,7 +2241,7 @@ msgctxt ""
"Flat\n"
"itemlist.text"
msgid "Flat"
-msgstr ""
+msgstr "Plano"
#: formres.src
msgctxt ""
@@ -2258,7 +2258,7 @@ msgctxt ""
"Left top\n"
"itemlist.text"
msgid "Left top"
-msgstr ""
+msgstr "Esquerda superior"
#: formres.src
msgctxt ""
@@ -2267,7 +2267,7 @@ msgctxt ""
"Left centered\n"
"itemlist.text"
msgid "Left centered"
-msgstr ""
+msgstr "Esquerda centrada"
#: formres.src
msgctxt ""
@@ -2276,7 +2276,7 @@ msgctxt ""
"Left bottom\n"
"itemlist.text"
msgid "Left bottom"
-msgstr ""
+msgstr "Esquerda inferior"
#: formres.src
msgctxt ""
@@ -2285,7 +2285,7 @@ msgctxt ""
"Right top\n"
"itemlist.text"
msgid "Right top"
-msgstr ""
+msgstr "Dereita superior"
#: formres.src
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"Right centered\n"
"itemlist.text"
msgid "Right centered"
-msgstr ""
+msgstr "Dereita centrada"
#: formres.src
msgctxt ""
@@ -2303,7 +2303,7 @@ msgctxt ""
"Right bottom\n"
"itemlist.text"
msgid "Right bottom"
-msgstr ""
+msgstr "Dereita inferior"
#: formres.src
msgctxt ""
@@ -2312,7 +2312,7 @@ msgctxt ""
"Above left\n"
"itemlist.text"
msgid "Above left"
-msgstr ""
+msgstr "Arriba á esquerda"
#: formres.src
msgctxt ""
@@ -2321,7 +2321,7 @@ msgctxt ""
"Above centered\n"
"itemlist.text"
msgid "Above centered"
-msgstr ""
+msgstr "Arriba centrado"
#: formres.src
msgctxt ""
@@ -2330,7 +2330,7 @@ msgctxt ""
"Above right\n"
"itemlist.text"
msgid "Above right"
-msgstr ""
+msgstr "Arriba á dereita"
#: formres.src
msgctxt ""
@@ -2339,7 +2339,7 @@ msgctxt ""
"Below left\n"
"itemlist.text"
msgid "Below left"
-msgstr ""
+msgstr "Abaixo á esquerda"
#: formres.src
msgctxt ""
@@ -2348,7 +2348,7 @@ msgctxt ""
"Below centered\n"
"itemlist.text"
msgid "Below centered"
-msgstr ""
+msgstr "Abaixo centrado"
#: formres.src
msgctxt ""
@@ -2357,7 +2357,7 @@ msgctxt ""
"Below right\n"
"itemlist.text"
msgid "Below right"
-msgstr ""
+msgstr "Abaixo á dereita"
#: formres.src
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"Centered\n"
"itemlist.text"
msgid "Centered"
-msgstr ""
+msgstr "Centrado"
#: formres.src
msgctxt ""
@@ -2391,7 +2391,7 @@ msgctxt ""
"Hide\n"
"itemlist.text"
msgid "Hide"
-msgstr ""
+msgstr "Agochar"
#: formres.src
msgctxt ""
@@ -2400,7 +2400,7 @@ msgctxt ""
"Show\n"
"itemlist.text"
msgid "Show"
-msgstr ""
+msgstr "Mostrar"
#: formres.src
msgctxt ""
@@ -2489,7 +2489,7 @@ msgctxt ""
"Preserve\n"
"itemlist.text"
msgid "Preserve"
-msgstr ""
+msgstr "Conservar"
#: formres.src
msgctxt ""
@@ -2498,7 +2498,7 @@ msgctxt ""
"Replace\n"
"itemlist.text"
msgid "Replace"
-msgstr ""
+msgstr "Substituír"
#: formres.src
msgctxt ""
@@ -2507,7 +2507,7 @@ msgctxt ""
"Collapse\n"
"itemlist.text"
msgid "Collapse"
-msgstr ""
+msgstr "Recoller"
#: formres.src
msgctxt ""
@@ -2676,7 +2676,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#: formres.src
msgctxt ""
@@ -2685,7 +2685,7 @@ msgctxt ""
"Keep Ratio\n"
"itemlist.text"
msgid "Keep Ratio"
-msgstr ""
+msgstr "Manter a proporción"
#: formres.src
msgctxt ""
@@ -2694,7 +2694,7 @@ msgctxt ""
"Fit to Size\n"
"itemlist.text"
msgid "Fit to Size"
-msgstr ""
+msgstr "Axustar ao tamaño"
#: formres.src
msgctxt ""
@@ -2719,7 +2719,7 @@ msgctxt ""
"Left-to-right\n"
"itemlist.text"
msgid "Left-to-right"
-msgstr ""
+msgstr "Da esquerda á dereita"
#: formres.src
msgctxt ""
@@ -2728,7 +2728,7 @@ msgctxt ""
"Right-to-left\n"
"itemlist.text"
msgid "Right-to-left"
-msgstr ""
+msgstr "Da dereita á esquerda"
#: formres.src
msgctxt ""
@@ -2737,7 +2737,7 @@ msgctxt ""
"Use superordinate object settings\n"
"itemlist.text"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Utilizar a configuración do obxecto superior"
#: formres.src
msgctxt ""
@@ -2746,7 +2746,7 @@ msgctxt ""
"Never\n"
"itemlist.text"
msgid "Never"
-msgstr ""
+msgstr "Nunca"
#: formres.src
msgctxt ""
@@ -2755,7 +2755,7 @@ msgctxt ""
"When focused\n"
"itemlist.text"
msgid "When focused"
-msgstr ""
+msgstr "Cando estea enfocada"
#: formres.src
msgctxt ""
@@ -2764,7 +2764,7 @@ msgctxt ""
"Always\n"
"itemlist.text"
msgid "Always"
-msgstr ""
+msgstr "Sempre"
#: formres.src
msgctxt ""
@@ -2781,7 +2781,7 @@ msgctxt ""
"To Paragraph\n"
"itemlist.text"
msgid "To Paragraph"
-msgstr ""
+msgstr "Ao parágrafo"
#: formres.src
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"As Character\n"
"itemlist.text"
msgid "As Character"
-msgstr ""
+msgstr "Como carácter"
#: formres.src
msgctxt ""
@@ -2799,7 +2799,7 @@ msgctxt ""
"To Page\n"
"itemlist.text"
msgid "To Page"
-msgstr ""
+msgstr "Á páxina"
#: formres.src
msgctxt ""
@@ -2808,7 +2808,7 @@ msgctxt ""
"To Frame\n"
"itemlist.text"
msgid "To Frame"
-msgstr ""
+msgstr "Ao marco"
#: formres.src
msgctxt ""
@@ -2817,7 +2817,7 @@ msgctxt ""
"To Character\n"
"itemlist.text"
msgid "To Character"
-msgstr ""
+msgstr "Ao carácter"
#: formres.src
msgctxt ""
@@ -2826,7 +2826,7 @@ msgctxt ""
"To Page\n"
"itemlist.text"
msgid "To Page"
-msgstr ""
+msgstr "Á páxina"
#: formres.src
msgctxt ""
@@ -2835,7 +2835,7 @@ msgctxt ""
"To Cell\n"
"itemlist.text"
msgid "To Cell"
-msgstr ""
+msgstr "Á cela"
#. That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
#: formres.src
@@ -3084,7 +3084,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#: propres.src
msgctxt ""
@@ -3093,7 +3093,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Si"
#: propres.src
msgctxt ""
diff --git a/source/gl/filter/source/config/fragments/filters.po b/source/gl/filter/source/config/fragments/filters.po
index 5dd786a4fed..f3449e3bb7e 100644
--- a/source/gl/filter/source/config/fragments/filters.po
+++ b/source/gl/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ 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-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 21:46+0000\n"
+"PO-Revision-Date: 2017-02-16 22:18+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467668763.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283513.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Debuxo de StarOffice antigo"
#: StarOffice_Spreadsheet.xcu
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Folla de cálculo de StarOffice antiga"
#: StarOffice_Writer.xcu
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Documento de texto de StarOffice antigo"
#: StarOffice_XML__Base_.xcu
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: calc8.xcu
msgctxt ""
diff --git a/source/gl/filter/source/config/fragments/internalgraphicfilters.po b/source/gl/filter/source/config/fragments/internalgraphicfilters.po
index f00b9c0827d..3e9960f9872 100644
--- a/source/gl/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/gl/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,7 +4,7 @@ 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-11 03:27+0000\n"
+"PO-Revision-Date: 2017-02-16 22:19+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457666853.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283563.000000\n"
#: bmp_Export.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Formato portátil de documentos"
#: pdf_Import.xcu
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF - Formato portátil de documentos"
#: pgm_Import.xcu
msgctxt ""
diff --git a/source/gl/filter/uiconfig/ui.po b/source/gl/filter/uiconfig/ui.po
index 4ac889b68a5..a17d0a1ab37 100644
--- a/source/gl/filter/uiconfig/ui.po
+++ b/source/gl/filter/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-07-04 21:47+0000\n"
+"PO-Revision-Date: 2017-02-19 22:24+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467668823.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487543093.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "XML Filter List"
-msgstr ""
+msgstr "Lista de filtros XML"
#: xmlfiltertabpagegeneral.ui
msgctxt ""
diff --git a/source/gl/forms/source/resource.po b/source/gl/forms/source/resource.po
index 766d17febd7..9ff0de7f1a6 100644
--- a/source/gl/forms/source/resource.po
+++ b/source/gl/forms/source/resource.po
@@ -4,7 +4,7 @@ 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: 2015-12-13 22:23+0000\n"
+"PO-Revision-Date: 2017-02-16 22:14+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1450045423.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283279.000000\n"
#: strings.src
msgctxt ""
@@ -506,4 +506,4 @@ msgctxt ""
"RID_STR_XFORMS_CANT_REMOVE_TYPE\n"
"string.text"
msgid "This is a built-in type and cannot be removed."
-msgstr ""
+msgstr "Este é un tipo integrado e non pode ser retirado."
diff --git a/source/gl/formula/source/core/resource.po b/source/gl/formula/source/core/resource.po
index f52199d3164..4013a6a983d 100644
--- a/source/gl/formula/source/core/resource.po
+++ b/source/gl/formula/source/core/resource.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: 2016-11-22 21:44+0100\n"
+"POT-Creation-Date: 2017-02-20 13:26+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"
@@ -1604,7 +1604,7 @@ msgctxt ""
"SC_OPCODE_PDURATION\n"
"string.text"
msgid "PDURATION"
-msgstr ""
+msgstr "DURACIÓNP"
#: core_resource.src
msgctxt ""
diff --git a/source/gl/formula/uiconfig/ui.po b/source/gl/formula/uiconfig/ui.po
index 3a40cf60e27..c36cc5e86c5 100644
--- a/source/gl/formula/uiconfig/ui.po
+++ b/source/gl/formula/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-05-01 22:31+0000\n"
+"PO-Revision-Date: 2017-02-19 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462141899.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487543114.000000\n"
#: formuladialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Formula"
-msgstr ""
+msgstr "Fórmula"
#: formuladialog.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Search"
-msgstr ""
+msgstr "_Buscar"
#: functionpage.ui
msgctxt ""
diff --git a/source/gl/fpicker/uiconfig/ui.po b/source/gl/fpicker/uiconfig/ui.po
index 13ab7592588..4172c7b03de 100644
--- a/source/gl/fpicker/uiconfig/ui.po
+++ b/source/gl/fpicker/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-09-18 07:51+0000\n"
+"PO-Revision-Date: 2017-02-19 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1474185105.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487543129.000000\n"
#: explorerfiledialog.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Connect To Server"
-msgstr ""
+msgstr "Conectar co servidor"
#: explorerfiledialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Create New Folder"
-msgstr ""
+msgstr "Crear un cartafol novo"
#: explorerfiledialog.ui
msgctxt ""
diff --git a/source/gl/framework/source/classes.po b/source/gl/framework/source/classes.po
index e882eecb790..80dcb802363 100644
--- a/source/gl/framework/source/classes.po
+++ b/source/gl/framework/source/classes.po
@@ -4,7 +4,7 @@ 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-07-04 21:48+0000\n"
+"PO-Revision-Date: 2017-02-16 22:15+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467668907.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283309.000000\n"
#: resource.src
msgctxt ""
@@ -156,7 +156,7 @@ msgctxt ""
"STR_SAFEMODE_TITLE\n"
"string.text"
msgid " (Safe Mode)"
-msgstr ""
+msgstr " (Modo seguro)"
#: resource.src
msgctxt ""
diff --git a/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po
index d73d1896dff..d6fca38f63b 100644
--- a/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ 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-07-04 21:48+0000\n"
+"PO-Revision-Date: 2017-02-19 22:26+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467668917.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487543169.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"OOO_CONTROL_322\n"
"LngText.text"
msgid "Some files that need to be updated are currently in use."
-msgstr ""
+msgstr "Algúns ficheiros que precisan de ser actualizados están a ser utilizados neste momento."
#: Control.ulf
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"OOO_CONTROL_323\n"
"LngText.text"
msgid "The following applications are using files that need to be updated by this setup. You can let Installation Wizard close them and attempt to restart them or reboot the machine later."
-msgstr ""
+msgstr "Os aplicativos seguintes están a utilizar ficheiros que precisan de ser actualizados por esta instalación. Pode deixar que o asistente as peche e tente reinicialas ou reiniciar o computador máis tarde."
#: Control.ulf
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&MSSansBold8}Files in Use"
-msgstr ""
+msgstr "{&MSSansBold8}Ficheiros en uso"
#: Control.ulf
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"OOO_CONTROL_325\n"
"LngText.text"
msgid "Cancel"
-msgstr ""
+msgstr "Cancelar"
#: Control.ulf
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"OOO_CONTROL_326\n"
"LngText.text"
msgid "OK"
-msgstr ""
+msgstr "Aceptar"
#: CustomAc.ulf
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"OOO_RADIOBUTTON_10\n"
"LngText.text"
msgid "&Close the applications and attempt to restart them."
-msgstr ""
+msgstr "&Pechar os aplicativos e tentar reinicialos."
#: RadioBut.ulf
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"OOO_RADIOBUTTON_11\n"
"LngText.text"
msgid "&Do not close applications. A reboot will be required."
-msgstr ""
+msgstr "&Non pechar os aplicativos. Será necesario reiniciar o computador."
#: UIText.ulf
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office.po b/source/gl/officecfg/registry/data/org/openoffice/Office.po
index 0b5a38dd689..b8a15292b5c 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ 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-11-09 22:17+0000\n"
+"PO-Revision-Date: 2017-02-16 22:15+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478729835.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283355.000000\n"
#: Addons.xcu
msgctxt ""
@@ -11525,7 +11525,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Formulas"
-msgstr ""
+msgstr "Fórmulas"
#: UI.xcu
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index d98360d1598..b63d3bf4433 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2016-12-01 22:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-19 22:41+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480633198.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487544093.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Database Object"
-msgstr ""
+msgstr "Obxecto de base de datos"
#: BaseWindowState.xcu
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Táboa dinámica"
#: CalcCommands.xcu
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Pivot Table"
-msgstr ""
+msgstr "Inserir táboa dinámica"
#: CalcCommands.xcu
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Create..."
-msgstr ""
+msgstr "~Crear..."
#: CalcCommands.xcu
msgctxt ""
@@ -1202,7 +1202,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell Edit Mode"
-msgstr ""
+msgstr "Modo de edición de cela"
#: CalcCommands.xcu
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr ""
+msgstr "Área de impresión"
#: CalcCommands.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Define Print Area"
-msgstr ""
+msgstr "~Definir área de impresión"
#: CalcCommands.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Limpar"
#: CalcCommands.xcu
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Limpar intervalos de impresión"
#: CalcCommands.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: CalcCommands.xcu
msgctxt ""
@@ -1346,7 +1346,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Edit Print Ranges"
-msgstr ""
+msgstr "Editar intervalos de impresión"
#: CalcCommands.xcu
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add"
-msgstr ""
+msgstr "Engadir"
#: CalcCommands.xcu
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Add Print Range"
-msgstr ""
+msgstr "Engadir intervalo de impresión"
#: CalcCommands.xcu
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr ""
+msgstr "Percorrer os tipos de referencia de cela"
#: CalcCommands.xcu
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert Named Range or Expression..."
-msgstr ""
+msgstr "~Inserir intervalo ou expresión de nome..."
#: CalcCommands.xcu
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Named Range or Expression..."
-msgstr ""
+msgstr "~Intervalo ou expresión de nome..."
#: CalcCommands.xcu
msgctxt ""
@@ -3128,7 +3128,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Sheet At End..."
-msgstr ""
+msgstr "Inserir folla no final..."
#: CalcCommands.xcu
msgctxt ""
@@ -3236,7 +3236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Moeda"
#: CalcCommands.xcu
msgctxt ""
@@ -3245,7 +3245,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Formatar como moeda"
#: CalcCommands.xcu
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Currency"
-msgstr ""
+msgstr "Moeda"
#: CalcCommands.xcu
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Currency"
-msgstr ""
+msgstr "Formatar como moeda"
#: CalcCommands.xcu
msgctxt ""
@@ -3272,7 +3272,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Percent"
-msgstr ""
+msgstr "Porcentaxe"
#: CalcCommands.xcu
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Percent"
-msgstr ""
+msgstr "Formatar como porcentaxe"
#: CalcCommands.xcu
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#: CalcCommands.xcu
msgctxt ""
@@ -3299,7 +3299,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as General"
-msgstr ""
+msgstr "Formatar como xeral"
#: CalcCommands.xcu
msgctxt ""
@@ -3308,7 +3308,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: CalcCommands.xcu
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Date"
-msgstr ""
+msgstr "Formatar como data"
#: CalcCommands.xcu
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number"
-msgstr ""
+msgstr "Número"
#: CalcCommands.xcu
msgctxt ""
@@ -3335,7 +3335,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Number"
-msgstr ""
+msgstr "Formatar como número"
#: CalcCommands.xcu
msgctxt ""
@@ -3344,7 +3344,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scientific"
-msgstr ""
+msgstr "Científico"
#: CalcCommands.xcu
msgctxt ""
@@ -3353,7 +3353,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Scientific"
-msgstr ""
+msgstr "Formatar como científico"
#: CalcCommands.xcu
msgctxt ""
@@ -3362,7 +3362,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Time"
-msgstr ""
+msgstr "Hora"
#: CalcCommands.xcu
msgctxt ""
@@ -3371,7 +3371,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Time"
-msgstr ""
+msgstr "Formatar como hora"
#: CalcCommands.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Ranges and Expressions"
-msgstr ""
+msgstr "~Intervalos e expresións con nome"
#: CalcCommands.xcu
msgctxt ""
@@ -3722,7 +3722,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ro~ws"
-msgstr ""
+msgstr "~Filas"
#: CalcCommands.xcu
msgctxt ""
@@ -3731,7 +3731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mns"
-msgstr ""
+msgstr "Colu~mnas"
#: CalcCommands.xcu
msgctxt ""
@@ -3821,7 +3821,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Date"
-msgstr ""
+msgstr "~Data"
#: CalcCommands.xcu
msgctxt ""
@@ -3839,7 +3839,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Time"
-msgstr ""
+msgstr "~Hora"
#: CalcCommands.xcu
msgctxt ""
@@ -3857,7 +3857,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Link"
-msgstr ""
+msgstr "Editar ligazón"
#: CalcCommands.xcu
msgctxt ""
@@ -3866,7 +3866,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Link"
-msgstr ""
+msgstr "Retirar ligazón"
#: CalcCommands.xcu
msgctxt ""
@@ -3938,7 +3938,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Only Numbers"
-msgstr ""
+msgstr "Pegar só números"
#: CalcCommands.xcu
msgctxt ""
@@ -3956,7 +3956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Column Operations"
-msgstr ""
+msgstr "Operacións sobre columnas"
#: CalcCommands.xcu
msgctxt ""
@@ -3965,7 +3965,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row Operations"
-msgstr ""
+msgstr "Operacións sobre filas"
#: CalcCommands.xcu
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert..."
-msgstr ""
+msgstr "~Inserir..."
#: CalcWindowState.xcu
msgctxt ""
@@ -4154,7 +4154,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "TSCP Classification"
-msgstr ""
+msgstr "Clasificación TSCP"
#: CalcWindowState.xcu
msgctxt ""
@@ -4460,7 +4460,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Arrows"
-msgstr ""
+msgstr "Frechas"
#: ChartCommands.xcu
msgctxt ""
@@ -4523,7 +4523,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tre~nd Line..."
-msgstr ""
+msgstr "Liña de te~ndencia..."
#: ChartCommands.xcu
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Open..."
-msgstr ""
+msgstr "Abrir..."
#: DbuCommands.xcu
msgctxt ""
@@ -6116,7 +6116,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report..."
-msgstr ""
+msgstr "Informe..."
#: DbuCommands.xcu
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Query (Design View)"
-msgstr ""
+msgstr "Nova ~consulta (visualización de deseño)"
#: DbuCommands.xcu
msgctxt ""
@@ -6296,7 +6296,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New Query (~SQL View)"
-msgstr ""
+msgstr "Nova consulta (visualización ~SQL)"
#: DbuCommands.xcu
msgctxt ""
@@ -6314,7 +6314,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~Table Design"
-msgstr ""
+msgstr "Novo ~deseño de táboa"
#: DbuCommands.xcu
msgctxt ""
@@ -6332,7 +6332,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "New ~View Design"
-msgstr ""
+msgstr "Novo ~deseño de visualización"
#: DbuCommands.xcu
msgctxt ""
@@ -6503,7 +6503,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rebuild"
-msgstr ""
+msgstr "Reconstruír"
#: DbuCommands.xcu
msgctxt ""
@@ -7034,7 +7034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animation"
-msgstr ""
+msgstr "Animación"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7385,7 +7385,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Link..."
-msgstr ""
+msgstr "~Ligazón..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8879,7 +8879,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Below"
-msgstr ""
+msgstr "Inserir unha fila por debaixo"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8888,7 +8888,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Row Above"
-msgstr ""
+msgstr "Inserir unha columna por enriba"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8933,7 +8933,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Right"
-msgstr ""
+msgstr "Inserir unha columna á dereita"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8942,7 +8942,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Column Left"
-msgstr ""
+msgstr "Inserir unha columna á esquerda"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9914,7 +9914,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr ""
+msgstr "Panel de páxinas principais"
#: DrawWindowState.xcu
msgctxt ""
@@ -9923,7 +9923,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr ""
+msgstr "Panel de páxinas principais (sen selección)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10418,7 +10418,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Oval vertical"
#: Effects.xcu
msgctxt ""
@@ -12830,7 +12830,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bars"
-msgstr ""
+msgstr "Barras"
#: Effects.xcu
msgctxt ""
@@ -13217,7 +13217,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Horizontal"
-msgstr ""
+msgstr "Oval horizontal"
#: Effects.xcu
msgctxt ""
@@ -13226,7 +13226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Oval Vertical"
-msgstr ""
+msgstr "Oval vertical"
#: Effects.xcu
msgctxt ""
@@ -13901,7 +13901,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Basic Shapes"
-msgstr ""
+msgstr "Inserir formas básicas"
#: GenericCommands.xcu
msgctxt ""
@@ -13928,7 +13928,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Aumentar"
#: GenericCommands.xcu
msgctxt ""
@@ -13937,7 +13937,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Aumentar o espazamento entre parágrafos"
#: GenericCommands.xcu
msgctxt ""
@@ -13946,7 +13946,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Aumentar o espazamento entre parágrafos"
#: GenericCommands.xcu
msgctxt ""
@@ -13955,7 +13955,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Diminuír"
#: GenericCommands.xcu
msgctxt ""
@@ -13964,7 +13964,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Diminuír o espazamento entre parágrafos"
#: GenericCommands.xcu
msgctxt ""
@@ -13973,7 +13973,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Diminuír o espazamento entre parágrafos"
#: GenericCommands.xcu
msgctxt ""
@@ -13982,7 +13982,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arrow Shapes"
-msgstr ""
+msgstr "Formas de frecha"
#: GenericCommands.xcu
msgctxt ""
@@ -13991,7 +13991,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Arrow"
-msgstr ""
+msgstr "~Frecha"
#: GenericCommands.xcu
msgctxt ""
@@ -14000,7 +14000,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart Shapes"
-msgstr ""
+msgstr "Formas de diagramas de fluxo"
#: GenericCommands.xcu
msgctxt ""
@@ -14009,7 +14009,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Flowchart"
-msgstr ""
+msgstr "~Diagrama de fluxo"
#: GenericCommands.xcu
msgctxt ""
@@ -14018,7 +14018,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Callout Shapes"
-msgstr ""
+msgstr "Formas de textos explicativos"
#: GenericCommands.xcu
msgctxt ""
@@ -14027,7 +14027,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Callout"
-msgstr ""
+msgstr "~Texto explicativo"
#: GenericCommands.xcu
msgctxt ""
@@ -14036,7 +14036,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Star Shapes"
-msgstr ""
+msgstr "Formas de estrela"
#: GenericCommands.xcu
msgctxt ""
@@ -14045,7 +14045,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "S~tar"
-msgstr ""
+msgstr "Es~trela"
#: GenericCommands.xcu
msgctxt ""
@@ -15440,7 +15440,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Text Box"
-msgstr ""
+msgstr "Inserir unha caixa de texto"
#: GenericCommands.xcu
msgctxt ""
@@ -15512,7 +15512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase"
-msgstr ""
+msgstr "Aumentar"
#: GenericCommands.xcu
msgctxt ""
@@ -15530,7 +15530,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Font Size"
-msgstr ""
+msgstr "Aumentar o tamaño da letra"
#: GenericCommands.xcu
msgctxt ""
@@ -15539,7 +15539,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease"
-msgstr ""
+msgstr "Diminuír"
#: GenericCommands.xcu
msgctxt ""
@@ -15557,7 +15557,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Font Size"
-msgstr ""
+msgstr "Diminuír o tamaño da letra"
#: GenericCommands.xcu
msgctxt ""
@@ -15584,7 +15584,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Shadow"
-msgstr ""
+msgstr "Alternar sombra"
#: GenericCommands.xcu
msgctxt ""
@@ -15638,7 +15638,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline"
-msgstr ""
+msgstr "Sublilñar"
#: GenericCommands.xcu
msgctxt ""
@@ -15818,7 +15818,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left"
-msgstr ""
+msgstr "Esquerda"
#: GenericCommands.xcu
msgctxt ""
@@ -15827,7 +15827,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Left"
-msgstr ""
+msgstr "Aliñar á esquerda"
#: GenericCommands.xcu
msgctxt ""
@@ -15836,7 +15836,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right"
-msgstr ""
+msgstr "Dereita"
#: GenericCommands.xcu
msgctxt ""
@@ -15845,7 +15845,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Right"
-msgstr ""
+msgstr "Aliñar á dereita"
#: GenericCommands.xcu
msgctxt ""
@@ -15854,7 +15854,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center"
-msgstr ""
+msgstr "Centrar"
#: GenericCommands.xcu
msgctxt ""
@@ -15863,7 +15863,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Center Horizontally"
-msgstr ""
+msgstr "Centrar horizontalmente"
#: GenericCommands.xcu
msgctxt ""
@@ -15899,7 +15899,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Line Spacing"
-msgstr ""
+msgstr "Indicar o entreliñado"
#: GenericCommands.xcu
msgctxt ""
@@ -16142,7 +16142,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimal"
-msgstr ""
+msgstr "Ideal"
#: GenericCommands.xcu
msgctxt ""
@@ -16151,7 +16151,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Optimal view"
-msgstr ""
+msgstr "Vista óptima"
#: GenericCommands.xcu
msgctxt ""
@@ -16178,7 +16178,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Line"
-msgstr ""
+msgstr "Inserir liña"
#: GenericCommands.xcu
msgctxt ""
@@ -16187,7 +16187,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "Liñas e frechas"
#: GenericCommands.xcu
msgctxt ""
@@ -16196,7 +16196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Starts with Arrow"
-msgstr ""
+msgstr "Liña con frecha no inicio"
#: GenericCommands.xcu
msgctxt ""
@@ -16205,7 +16205,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Ends with Arrow"
-msgstr ""
+msgstr "Liña con frecha no fin"
#: GenericCommands.xcu
msgctxt ""
@@ -16214,7 +16214,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line with Arrows"
-msgstr ""
+msgstr "Liña con frechas"
#: GenericCommands.xcu
msgctxt ""
@@ -16223,7 +16223,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line with Arrow/Circle"
-msgstr ""
+msgstr "Liña con frecha/círculo"
#: GenericCommands.xcu
msgctxt ""
@@ -16232,7 +16232,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line with Circle/Arrow"
-msgstr ""
+msgstr "Liña con círculo/frecha"
#: GenericCommands.xcu
msgctxt ""
@@ -16241,7 +16241,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line with Arrow/Square"
-msgstr ""
+msgstr "Liña con frecha/cadrado"
#: GenericCommands.xcu
msgctxt ""
@@ -16250,7 +16250,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line with Square/Arrow"
-msgstr ""
+msgstr "Liña con cadrado/frecha"
#: GenericCommands.xcu
msgctxt ""
@@ -16259,7 +16259,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dimension Line"
-msgstr ""
+msgstr "Liña de dimensión"
#: GenericCommands.xcu
msgctxt ""
@@ -16295,7 +16295,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Rectangle"
-msgstr ""
+msgstr "Inserir rectángulo"
#: GenericCommands.xcu
msgctxt ""
@@ -16322,7 +16322,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Ellipse"
-msgstr ""
+msgstr "Inserir elipse"
#: GenericCommands.xcu
msgctxt ""
@@ -16367,7 +16367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Crop Image Dialog..."
-msgstr ""
+msgstr "Caixa de diálogo de recorte de imaxe..."
#: GenericCommands.xcu
msgctxt ""
@@ -16376,7 +16376,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Crop Dialog..."
-msgstr ""
+msgstr "Caixa de diálogo de recorte..."
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/gl/reportdesign/source/ui/inspection.po b/source/gl/reportdesign/source/ui/inspection.po
index 9a0e42e8c3d..8295342790a 100644
--- a/source/gl/reportdesign/source/ui/inspection.po
+++ b/source/gl/reportdesign/source/ui/inspection.po
@@ -4,8 +4,8 @@ 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: 2013-06-13 21:25+0000\n"
-"Last-Translator: Antón Méixome <meixome@certima.net>\n"
+"PO-Revision-Date: 2017-02-19 22:41+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1371158715.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487544108.000000\n"
#: inspection.src
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "Non"
#: inspection.src
msgctxt ""
@@ -48,7 +48,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#: inspection.src
msgctxt ""
@@ -65,7 +65,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ningunha"
#: inspection.src
msgctxt ""
diff --git a/source/gl/sc/source/ui/dbgui.po b/source/gl/sc/source/ui/dbgui.po
index d137c2b7257..9baa97ff74f 100644
--- a/source/gl/sc/source/ui/dbgui.po
+++ b/source/gl/sc/source/ui/dbgui.po
@@ -4,7 +4,7 @@ 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-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:21+0000\n"
+"PO-Revision-Date: 2017-02-16 22:16+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467670904.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283383.000000\n"
#: pvfundlg.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Median\n"
"itemlist.text"
msgid "Median"
-msgstr ""
+msgstr "Mediana"
#: pvfundlg.src
msgctxt ""
diff --git a/source/gl/scp2/source/ooo.po b/source/gl/scp2/source/ooo.po
index 2615d865330..0e50ec6df18 100644
--- a/source/gl/scp2/source/ooo.po
+++ b/source/gl/scp2/source/ooo.po
@@ -4,7 +4,7 @@ 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-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:33+0000\n"
+"PO-Revision-Date: 2017-02-16 22:27+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467671632.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487284033.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Venetian"
-msgstr ""
+msgstr "Veneciano"
#: module_langpack.ulf
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Installs the Venetian user interface"
-msgstr ""
+msgstr "Instala a interface de usuario en veneciano"
#: module_langpack.ulf
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan"
-msgstr ""
+msgstr "Tibetano clásico"
#: module_ooo.ulf
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_BO\n"
"LngText.text"
msgid "Classical Tibetan syllable spelling dictionary"
-msgstr ""
+msgstr "Dicionario ortográfico de sílabas do tibetano clásico"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/gl/sd/source/core.po b/source/gl/sd/source/core.po
index f213da9474e..b27a40eaf07 100644
--- a/source/gl/sd/source/core.po
+++ b/source/gl/sd/source/core.po
@@ -4,7 +4,7 @@ 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-12-01 12:12+0100\n"
-"PO-Revision-Date: 2016-07-04 22:34+0000\n"
+"PO-Revision-Date: 2017-02-16 23:12+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467671642.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487286722.000000\n"
#: glob.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_MASTERSLIDE_NAME\n"
"string.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Diapositiva principal"
#: glob.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_MASTERPAGE_NAME\n"
"string.text"
msgid "Master Page"
-msgstr ""
+msgstr "Páxina principal"
#: glob.src
msgctxt ""
@@ -677,7 +677,7 @@ msgctxt ""
"STR_SHRINK_FONT_SIZE\n"
"string.text"
msgid "Shrink font size"
-msgstr ""
+msgstr "Reducir o tamaño da letra"
#: glob.src
msgctxt ""
@@ -685,4 +685,4 @@ msgctxt ""
"STR_GROW_FONT_SIZE\n"
"string.text"
msgid "Grow font size"
-msgstr ""
+msgstr "Aumentar o tamaño da letra"
diff --git a/source/gl/sd/source/ui/animations.po b/source/gl/sd/source/ui/animations.po
index 4c36cff21c1..4bea4e83e77 100644
--- a/source/gl/sd/source/ui/animations.po
+++ b/source/gl/sd/source/ui/animations.po
@@ -4,7 +4,7 @@ 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-10-03 21:13+0000\n"
+"PO-Revision-Date: 2017-02-18 09:18+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475529190.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487409518.000000\n"
#: CustomAnimation.src
msgctxt ""
@@ -280,7 +280,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_DIRECTION_PROPERTY\n"
"string.text"
msgid "Direction:"
-msgstr ""
+msgstr "Dirección:"
#: CustomAnimation.src
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_ZOOM_PROPERTY\n"
"string.text"
msgid "Zoom:"
-msgstr ""
+msgstr "Ampliación:"
#: CustomAnimation.src
msgctxt ""
@@ -296,7 +296,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SPOKES_PROPERTY\n"
"string.text"
msgid "Spokes:"
-msgstr ""
+msgstr "Raios:"
#: CustomAnimation.src
msgctxt ""
@@ -304,7 +304,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY\n"
"string.text"
msgid "First color:"
-msgstr ""
+msgstr "Primeira cor:"
#: CustomAnimation.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY\n"
"string.text"
msgid "Second color:"
-msgstr ""
+msgstr "Segunda cor:"
#: CustomAnimation.src
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY\n"
"string.text"
msgid "Fill color:"
-msgstr ""
+msgstr "Cor de recheo:"
#: CustomAnimation.src
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Estilo:"
#: CustomAnimation.src
msgctxt ""
@@ -336,7 +336,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_PROPERTY\n"
"string.text"
msgid "Font:"
-msgstr ""
+msgstr "Tipo de letra:"
#: CustomAnimation.src
msgctxt ""
@@ -344,7 +344,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY\n"
"string.text"
msgid "Font color:"
-msgstr ""
+msgstr "Cor da letra:"
#: CustomAnimation.src
msgctxt ""
@@ -352,7 +352,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY\n"
"string.text"
msgid "Style:"
-msgstr ""
+msgstr "Estilo:"
#: CustomAnimation.src
msgctxt ""
@@ -360,7 +360,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY\n"
"string.text"
msgid "Typeface:"
-msgstr ""
+msgstr "Tipografía:"
#: CustomAnimation.src
msgctxt ""
@@ -368,7 +368,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY\n"
"string.text"
msgid "Line color:"
-msgstr ""
+msgstr "Cor da liña:"
#: CustomAnimation.src
msgctxt ""
@@ -376,7 +376,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SIZE_PROPERTY\n"
"string.text"
msgid "Font size:"
-msgstr ""
+msgstr "Tamaño de letra:"
#: CustomAnimation.src
msgctxt ""
@@ -384,7 +384,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_SCALE_PROPERTY\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Tamaño:"
#: CustomAnimation.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_AMOUNT_PROPERTY\n"
"string.text"
msgid "Amount:"
-msgstr ""
+msgstr "Cantidade:"
#: CustomAnimation.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"STR_CUSTOMANIMATION_COLOR_PROPERTY\n"
"string.text"
msgid "Color:"
-msgstr ""
+msgstr "Cor:"
#: CustomAnimation.src
msgctxt ""
diff --git a/source/gl/sd/source/ui/app.po b/source/gl/sd/source/ui/app.po
index 92b8b5b21a4..f1465393e52 100644
--- a/source/gl/sd/source/ui/app.po
+++ b/source/gl/sd/source/ui/app.po
@@ -4,7 +4,7 @@ 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-10-03 20:16+0000\n"
+"PO-Revision-Date: 2017-02-18 09:19+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475525778.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487409588.000000\n"
#: popup.src
msgctxt ""
@@ -155,7 +155,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Todos os estilos"
#: res_bmp.src
msgctxt ""
@@ -164,7 +164,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: res_bmp.src
msgctxt ""
@@ -173,7 +173,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: res_bmp.src
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: res_bmp.src
msgctxt ""
@@ -191,7 +191,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Todos os estilos"
#: res_bmp.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: sdstring.src
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"STR_PRESENTATIONS_STYLE_FAMILY\n"
"string.text"
msgid "Presentation Styles"
-msgstr ""
+msgstr "Estilos de presentación"
#: strings.src
msgctxt ""
@@ -2450,7 +2450,7 @@ msgctxt ""
"STR_CUSTOMANIMATIONPANE\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animación"
#: strings.src
msgctxt ""
@@ -2602,7 +2602,7 @@ msgctxt ""
"STR_OBJECTS_TREE\n"
"string.text"
msgid "Page Tree"
-msgstr ""
+msgstr "Árbore de páxinas"
#: toolbox.src
msgctxt ""
diff --git a/source/gl/sd/uiconfig/sdraw/ui.po b/source/gl/sd/uiconfig/sdraw/ui.po
index 7560e1f83c1..545048fd983 100644
--- a/source/gl/sd/uiconfig/sdraw/ui.po
+++ b/source/gl/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-07-04 22:37+0000\n"
+"PO-Revision-Date: 2017-02-18 09:20+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467671823.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487409613.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Numeración"
#: bulletsandnumbering.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Values from Selection"
-msgstr ""
+msgstr "Valores da selección"
#: copydlg.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transparency"
-msgstr ""
+msgstr "Transparencia"
#: drawparadialog.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Numeración"
#: drawprtldialog.ui
msgctxt ""
diff --git a/source/gl/sd/uiconfig/simpress/ui.po b/source/gl/sd/uiconfig/simpress/ui.po
index 5060f44b3cb..c57e2da5923 100644
--- a/source/gl/sd/uiconfig/simpress/ui.po
+++ b/source/gl/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-10-05 20:53+0000\n"
+"PO-Revision-Date: 2017-02-18 09:30+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1475700790.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487410245.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "Opcións"
#: customanimationspanel.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation Deck"
-msgstr ""
+msgstr "Panel de animación"
#: customanimationspanel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation List"
-msgstr ""
+msgstr "Lista de animación"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Add Effect"
-msgstr ""
+msgstr "Engadir un efecto"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Remove Effect"
-msgstr ""
+msgstr "Retirar o efecto"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Subir"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Baixar"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start:"
-msgstr ""
+msgstr "_Inicio:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Direction:"
-msgstr ""
+msgstr "_Dirección:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "On click"
-msgstr ""
+msgstr "Ao premer"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "With previous"
-msgstr ""
+msgstr "Co anterior"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "After previous"
-msgstr ""
+msgstr "Despois do anterior"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Categoría:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Entrance"
-msgstr ""
+msgstr "Entrada"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Énfase"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Exit"
-msgstr ""
+msgstr "Saída"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Motion Paths"
-msgstr ""
+msgstr "Traxectorias"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Misc Effects"
-msgstr ""
+msgstr "Efectos diversos"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "D_uration:"
-msgstr ""
+msgstr "D_uración:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Seleccione a velocidade da animación."
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Effect:"
-msgstr ""
+msgstr "Efecto:"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Preview"
-msgstr ""
+msgstr "Visualización automática"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Play"
-msgstr ""
+msgstr "Reproducir"
#: customanimationspanelhorizontal.ui
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Preview Effect"
-msgstr ""
+msgstr "Visualizar efecto"
#: customanimationtexttab.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the speed of the Animation."
-msgstr ""
+msgstr "Seleccione a velocidade da animación."
#: customanimationtimingtab.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Documento"
#: navigatorpanel.ui
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Xanela activa"
#: navigatorpanel.ui
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Slide"
-msgstr ""
+msgstr "Primeira diapositiva"
#: navigatorpanel.ui
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Previous Slide"
-msgstr ""
+msgstr "Diapositiva anterior"
#: navigatorpanel.ui
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Next Slide"
-msgstr ""
+msgstr "Diapositiva seguinte"
#: navigatorpanel.ui
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Last Slide"
-msgstr ""
+msgstr "Última diapositiva"
#: navigatorpanel.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Modo arrastrar"
#: navigatorpanel.ui
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Shapes"
-msgstr ""
+msgstr "Mostrar formas"
#: notebookbar.ui
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Ficheiro"
#: notebookbar.ui
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clone"
-msgstr ""
+msgstr "Clonar"
#: notebookbar.ui
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Viñetas e numeración"
#: notebookbar.ui
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sangría"
#: notebookbar.ui
msgctxt ""
@@ -1679,7 +1679,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Aumentar o sangrado"
#: notebookbar.ui
msgctxt ""
@@ -1688,7 +1688,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Reducir o sangrado"
#: notebookbar.ui
msgctxt ""
@@ -1697,7 +1697,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Aliñamento horizontal"
#: notebookbar.ui
msgctxt ""
@@ -1706,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Inicio"
#: notebookbar.ui
msgctxt ""
@@ -1715,7 +1715,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Inserir son ou vídeo"
#: notebookbar.ui
msgctxt ""
@@ -1724,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Símbolo"
#: notebookbar.ui
msgctxt ""
@@ -1733,7 +1733,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: notebookbar.ui
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Transitions"
-msgstr ""
+msgstr "Transicións"
#: notebookbar.ui
msgctxt ""
@@ -1751,7 +1751,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animación"
#: notebookbar.ui
msgctxt ""
@@ -1760,7 +1760,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide Show"
-msgstr ""
+msgstr "Presentación de diapositivas"
#: notebookbar.ui
msgctxt ""
@@ -1769,7 +1769,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "Revisión ortográfica automática"
#: notebookbar.ui
msgctxt ""
@@ -1778,7 +1778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Revisar"
#: notebookbar.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grid"
-msgstr ""
+msgstr "Grade"
#: notebookbar.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Ver"
#: notebookbar.ui
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Táboa"
#: notebookbar.ui
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#: notebookbar_groups.ui
msgctxt ""
@@ -1823,7 +1823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Blank"
-msgstr ""
+msgstr "Baleiro"
#: notebookbar_groups.ui
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title Slide"
-msgstr ""
+msgstr "Diapositiva de título"
#: notebookbar_groups.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Text"
-msgstr ""
+msgstr "Título, texto"
#: notebookbar_groups.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title, Content"
-msgstr ""
+msgstr "Título, contido"
#: notebookbar_groups.ui
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Centered Text"
-msgstr ""
+msgstr "Texto centrado"
#: notebookbar_groups.ui
msgctxt ""
@@ -1868,7 +1868,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hiperligazón"
#: notebookbar_groups.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Nota de rodapé"
#: notebookbar_groups.ui
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Nota final"
#: notebookbar_groups.ui
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Marcador"
#: notebookbar_groups.ui
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Referencia cruzada"
#: notebookbar_groups.ui
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 1"
-msgstr ""
+msgstr "Principal 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master 2"
-msgstr ""
+msgstr "Principal 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Predeterminada"
#: notebookbar_groups.ui
msgctxt ""
@@ -1940,7 +1940,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Sen recheo"
#: notebookbar_groups.ui
msgctxt ""
@@ -1949,7 +1949,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "With Shadow"
-msgstr ""
+msgstr "Con sombra"
#: notebookbar_groups.ui
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 1"
-msgstr ""
+msgstr "Título 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title 2"
-msgstr ""
+msgstr "Título 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -1976,7 +1976,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Ficheiro"
#: notebookbar_groups.ui
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Portapapeis"
#: notebookbar_groups.ui
msgctxt ""
@@ -1994,10 +1994,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"growb\n"
@@ -2007,7 +2006,6 @@ msgid " "
msgstr " "
#: notebookbar_groups.ui
-#, fuzzy
msgctxt ""
"notebookbar_groups.ui\n"
"shrinkb\n"
@@ -2023,7 +2021,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: notebookbar_groups.ui
msgctxt ""
@@ -2032,7 +2030,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start"
-msgstr ""
+msgstr "Inicio"
#: notebookbar_groups.ui
msgctxt ""
@@ -2041,7 +2039,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Master"
-msgstr ""
+msgstr "Principal"
#: notebookbar_groups.ui
msgctxt ""
diff --git a/source/gl/sfx2/source/appl.po b/source/gl/sfx2/source/appl.po
index fd6dd3edd5d..f6a796ff4a5 100644
--- a/source/gl/sfx2/source/appl.po
+++ b/source/gl/sfx2/source/appl.po
@@ -4,7 +4,7 @@ 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-11-04 22:44+0000\n"
+"PO-Revision-Date: 2017-02-16 22:22+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478299457.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283777.000000\n"
#: app.src
msgctxt ""
@@ -578,7 +578,7 @@ msgctxt ""
"STR_SFX_FILTERNAME_PDF\n"
"string.text"
msgid "PDF files"
-msgstr ""
+msgstr "Ficheiros PDF"
#: app.src
msgctxt ""
diff --git a/source/gl/sfx2/source/dialog.po b/source/gl/sfx2/source/dialog.po
index a539709ea48..dbd0257fa79 100644
--- a/source/gl/sfx2/source/dialog.po
+++ b/source/gl/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ 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-11-10 16:15+0000\n"
+"PO-Revision-Date: 2017-02-18 21:26+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478794530.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453184.000000\n"
#: dialog.src
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"STR_PREVIEW_CHECKBOX\n"
"string.text"
msgid "Show Previews"
-msgstr ""
+msgstr "Mostrar vistas previas"
#: dialog.src
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"SID_OPENDOC\n"
"menuitem.text"
msgid "Open..."
-msgstr ""
+msgstr "Abrir..."
#: dialog.src
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"SID_SAVEDOC\n"
"menuitem.text"
msgid "Save"
-msgstr ""
+msgstr "Gardar"
#: dialog.src
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"SID_UNDO\n"
"menuitem.text"
msgid "Undo"
-msgstr ""
+msgstr "Desfacer"
#: dialog.src
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"SID_REDO\n"
"menuitem.text"
msgid "Redo"
-msgstr ""
+msgstr "Refacer"
#: dialog.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"SID_PRINTDOC\n"
"menuitem.text"
msgid "Print"
-msgstr ""
+msgstr "Imprimir"
#: dialog.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"SID_MENUBAR\n"
"menuitem.text"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menú"
#: dialog.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"SID_OPTIONS\n"
"menuitem.text"
msgid "Options"
-msgstr ""
+msgstr "Opcións"
#: dialog.src
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"SID_CLOSEDOC\n"
"menuitem.text"
msgid "Close"
-msgstr ""
+msgstr "Pechar"
#: dinfdlg.src
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"Checked by\n"
"itemlist.text"
msgid "Checked by"
-msgstr ""
+msgstr "Comprobado por"
#: dinfdlg.src
msgctxt ""
@@ -283,7 +283,7 @@ msgctxt ""
"Client\n"
"itemlist.text"
msgid "Client"
-msgstr ""
+msgstr "Cliente"
#: dinfdlg.src
msgctxt ""
@@ -292,7 +292,7 @@ msgctxt ""
"Date completed\n"
"itemlist.text"
msgid "Date completed"
-msgstr ""
+msgstr "Data de remate"
#: dinfdlg.src
msgctxt ""
@@ -301,7 +301,7 @@ msgctxt ""
"Department\n"
"itemlist.text"
msgid "Department"
-msgstr ""
+msgstr "Departamento"
#: dinfdlg.src
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"Destinations\n"
"itemlist.text"
msgid "Destinations"
-msgstr ""
+msgstr "Destinos"
#: dinfdlg.src
msgctxt ""
@@ -319,7 +319,7 @@ msgctxt ""
"Disposition\n"
"itemlist.text"
msgid "Disposition"
-msgstr ""
+msgstr "Disposición"
#: dinfdlg.src
msgctxt ""
@@ -328,7 +328,7 @@ msgctxt ""
"Division\n"
"itemlist.text"
msgid "Division"
-msgstr ""
+msgstr "División"
#: dinfdlg.src
msgctxt ""
@@ -337,7 +337,7 @@ msgctxt ""
"Document number\n"
"itemlist.text"
msgid "Document number"
-msgstr ""
+msgstr "Número do documento"
#: dinfdlg.src
msgctxt ""
@@ -346,7 +346,7 @@ msgctxt ""
"Editor\n"
"itemlist.text"
msgid "Editor"
-msgstr ""
+msgstr "Editor"
#: dinfdlg.src
msgctxt ""
@@ -355,7 +355,7 @@ msgctxt ""
"E-Mail\n"
"itemlist.text"
msgid "E-Mail"
-msgstr ""
+msgstr "Correo electrónico"
#: dinfdlg.src
msgctxt ""
@@ -364,7 +364,7 @@ msgctxt ""
"Forward to\n"
"itemlist.text"
msgid "Forward to"
-msgstr ""
+msgstr "Encamiñar para"
#: dinfdlg.src
msgctxt ""
@@ -373,7 +373,7 @@ msgctxt ""
"Group\n"
"itemlist.text"
msgid "Group"
-msgstr ""
+msgstr "Grupo"
#: dinfdlg.src
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"Info\n"
"itemlist.text"
msgid "Info"
-msgstr ""
+msgstr "Información"
#: dinfdlg.src
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"Language\n"
"itemlist.text"
msgid "Language"
-msgstr ""
+msgstr "Idioma"
#: dinfdlg.src
msgctxt ""
@@ -400,7 +400,7 @@ msgctxt ""
"Mailstop\n"
"itemlist.text"
msgid "Mailstop"
-msgstr ""
+msgstr "Centro de distribución de correo"
#: dinfdlg.src
msgctxt ""
@@ -409,7 +409,7 @@ msgctxt ""
"Matter\n"
"itemlist.text"
msgid "Matter"
-msgstr ""
+msgstr "Asunto"
#: dinfdlg.src
msgctxt ""
@@ -418,7 +418,7 @@ msgctxt ""
"Office\n"
"itemlist.text"
msgid "Office"
-msgstr ""
+msgstr "Oficina"
#: dinfdlg.src
msgctxt ""
@@ -427,7 +427,7 @@ msgctxt ""
"Owner\n"
"itemlist.text"
msgid "Owner"
-msgstr ""
+msgstr "Propietario"
#: dinfdlg.src
msgctxt ""
@@ -436,7 +436,7 @@ msgctxt ""
"Project\n"
"itemlist.text"
msgid "Project"
-msgstr ""
+msgstr "Proxecto"
#: dinfdlg.src
msgctxt ""
@@ -445,7 +445,7 @@ msgctxt ""
"Publisher\n"
"itemlist.text"
msgid "Publisher"
-msgstr ""
+msgstr "Editorial"
#: dinfdlg.src
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"Purpose\n"
"itemlist.text"
msgid "Purpose"
-msgstr ""
+msgstr "Finalidade"
#: dinfdlg.src
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"Received from\n"
"itemlist.text"
msgid "Received from"
-msgstr ""
+msgstr "Recibido de"
#: dinfdlg.src
msgctxt ""
@@ -472,7 +472,7 @@ msgctxt ""
"Recorded by\n"
"itemlist.text"
msgid "Recorded by"
-msgstr ""
+msgstr "Gravado por"
#: dinfdlg.src
msgctxt ""
@@ -481,7 +481,7 @@ msgctxt ""
"Recorded date\n"
"itemlist.text"
msgid "Recorded date"
-msgstr ""
+msgstr "Data de gravación"
#: dinfdlg.src
msgctxt ""
@@ -490,7 +490,7 @@ msgctxt ""
"Reference\n"
"itemlist.text"
msgid "Reference"
-msgstr ""
+msgstr "Referencia"
#: dinfdlg.src
msgctxt ""
@@ -499,7 +499,7 @@ msgctxt ""
"Source\n"
"itemlist.text"
msgid "Source"
-msgstr ""
+msgstr "Fonte"
#: dinfdlg.src
msgctxt ""
@@ -508,7 +508,7 @@ msgctxt ""
"Status\n"
"itemlist.text"
msgid "Status"
-msgstr ""
+msgstr "Estado"
#: dinfdlg.src
msgctxt ""
@@ -517,7 +517,7 @@ msgctxt ""
"Telephone number\n"
"itemlist.text"
msgid "Telephone number"
-msgstr ""
+msgstr "Número de teléfono"
#: dinfdlg.src
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"Typist\n"
"itemlist.text"
msgid "Typist"
-msgstr ""
+msgstr "Escritor"
#: dinfdlg.src
msgctxt ""
@@ -535,7 +535,7 @@ msgctxt ""
"URL\n"
"itemlist.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: dinfdlg.src
msgctxt ""
@@ -544,7 +544,7 @@ msgctxt ""
"Text\n"
"itemlist.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: dinfdlg.src
msgctxt ""
@@ -553,7 +553,7 @@ msgctxt ""
"DateTime\n"
"itemlist.text"
msgid "DateTime"
-msgstr ""
+msgstr "Data/hora"
#: dinfdlg.src
msgctxt ""
@@ -562,7 +562,7 @@ msgctxt ""
"Date\n"
"itemlist.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: dinfdlg.src
msgctxt ""
@@ -571,7 +571,7 @@ msgctxt ""
"Duration\n"
"itemlist.text"
msgid "Duration"
-msgstr ""
+msgstr "Duración"
#: dinfdlg.src
msgctxt ""
@@ -580,7 +580,7 @@ msgctxt ""
"Number\n"
"itemlist.text"
msgid "Number"
-msgstr ""
+msgstr "Número"
#: dinfdlg.src
msgctxt ""
@@ -589,7 +589,7 @@ msgctxt ""
"Yes or no\n"
"itemlist.text"
msgid "Yes or no"
-msgstr ""
+msgstr "Si ou non"
#: dinfdlg.src
msgctxt ""
diff --git a/source/gl/sfx2/source/doc.po b/source/gl/sfx2/source/doc.po
index bdcd994a1a0..6b1a442382b 100644
--- a/source/gl/sfx2/source/doc.po
+++ b/source/gl/sfx2/source/doc.po
@@ -4,7 +4,7 @@ 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-10-03 21:18+0000\n"
+"PO-Revision-Date: 2017-02-18 21:26+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475529484.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453206.000000\n"
#: doc.src
msgctxt ""
@@ -146,7 +146,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Seleccionar un modelo"
#: doc.src
msgctxt ""
@@ -733,7 +733,7 @@ msgctxt ""
"Styles\n"
"itemlist.text"
msgid "Styles"
-msgstr ""
+msgstr "Estilos"
#: doctempl.src
msgctxt ""
diff --git a/source/gl/sfx2/source/sidebar.po b/source/gl/sfx2/source/sidebar.po
index 7888e46eea2..6f1d331bade 100644
--- a/source/gl/sfx2/source/sidebar.po
+++ b/source/gl/sfx2/source/sidebar.po
@@ -4,7 +4,7 @@ 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-07-04 22:38+0000\n"
+"PO-Revision-Date: 2017-02-18 21:27+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467671912.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453234.000000\n"
#: Sidebar.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SFX_STR_SIDEBAR_CUSTOMIZATION\n"
"string.text"
msgid "Customization"
-msgstr ""
+msgstr "Personalización"
#: Sidebar.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"SFX_STR_SIDEBAR_RESTORE\n"
"string.text"
msgid "Restore Default"
-msgstr ""
+msgstr "Restaurar o predeterminado"
#: Sidebar.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"SFX_STR_SIDEBAR_HIDE_SIDEBAR\n"
"string.text"
msgid "Close Sidebar"
-msgstr ""
+msgstr "Pechar a barra lateral"
diff --git a/source/gl/sfx2/source/view.po b/source/gl/sfx2/source/view.po
index 157566d5bc2..5220271fe38 100644
--- a/source/gl/sfx2/source/view.po
+++ b/source/gl/sfx2/source/view.po
@@ -4,7 +4,7 @@ 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-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-10-03 20:27+0000\n"
+"PO-Revision-Date: 2017-02-18 21:28+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1475526449.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453317.000000\n"
#: view.src
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"STR_READONLY_PDF\n"
"string.text"
msgid "This PDF is open in read-only mode to allow signing the existing file."
-msgstr ""
+msgstr "Este PDF foi aberto no modo só lectura para permitir que sexa asinado."
#: view.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"STR_CHECKOUT\n"
"string.text"
msgid "Check Out"
-msgstr ""
+msgstr "Dar saída"
#: view.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"STR_READONLY_EDIT\n"
"string.text"
msgid "Edit Document"
-msgstr ""
+msgstr "Editar documento"
#: view.src
msgctxt ""
@@ -256,4 +256,4 @@ msgctxt ""
"STR_READONLY_SIGN\n"
"string.text"
msgid "Sign Document"
-msgstr ""
+msgstr "Asinar o documento"
diff --git a/source/gl/sfx2/uiconfig/ui.po b/source/gl/sfx2/uiconfig/ui.po
index 4ca69b13d56..8cb9a5f359b 100644
--- a/source/gl/sfx2/uiconfig/ui.po
+++ b/source/gl/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-11-06 17:37+0000\n"
+"PO-Revision-Date: 2017-02-18 21:34+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1478453846.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453643.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Confirm editing of document"
-msgstr ""
+msgstr "Confirmar a edición do documento"
#: editdocumentdialog.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Are you sure you want to edit the document?"
-msgstr ""
+msgstr "Confirma que desexa editar o documento?"
#: editdocumentdialog.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The original file can be signed without editing the document. Existing signatures on the document will be lost in case of saving an edited version."
-msgstr ""
+msgstr "O ficheiro orixinal pode ser asinado sen editar o documento. As sinaturas existentes no documento serán perdidas no caso de que garde unha versión editada."
#: editdocumentdialog.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Document"
-msgstr ""
+msgstr "Editar documento"
#: editdocumentdialog.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Cancelar"
#: editdurationdialog.ui
msgctxt ""
@@ -1346,7 +1346,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Password"
-msgstr ""
+msgstr "Contrasinal"
#: password.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Enter Safe Mode"
-msgstr ""
+msgstr "Entrar no modo seguro"
#: safemodequerydialog.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Restart"
-msgstr ""
+msgstr "_Reiniciar"
#: safemodequerydialog.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Are you sure you want to restart %PRODUCTNAME and enter the Safe Mode?"
-msgstr ""
+msgstr "Confirma que desexa reiniciar o %PRODUCTNAME e entrar no modo seguro?"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Name"
-msgstr ""
+msgstr "_Nome do modelo"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Category"
-msgstr ""
+msgstr "_Categoría do modelo"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set as default template"
-msgstr ""
+msgstr "E_stabelecer como modelo predeterminado"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1616,7 +1616,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clear Recent Documents"
-msgstr ""
+msgstr "Limpar os documentos recentes"
#: startcenter.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Application"
-msgstr ""
+msgstr "Aplicativo"
#: startcenter.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Files List"
-msgstr ""
+msgstr "Lista de ficheiros recentes"
#: startcenter.ui
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Templates List"
-msgstr ""
+msgstr "Lista de modelos"
#: templatecategorydlg.ui
msgctxt ""
@@ -1859,7 +1859,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Search"
-msgstr ""
+msgstr "Buscar"
#: templatedlg.ui
msgctxt ""
@@ -1877,7 +1877,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filter by Application"
-msgstr ""
+msgstr "Filtrar por aplicativo"
#: templatedlg.ui
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filter by Category"
-msgstr ""
+msgstr "Filtrar por categoría"
#: templatedlg.ui
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template List"
-msgstr ""
+msgstr "Lista de modelos"
#: templatedlg.ui
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Settings"
-msgstr ""
+msgstr "Configuración"
#: templatedlg.ui
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Buscar modelos na rede"
#: templatedlg.ui
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show this dialog at startup"
-msgstr ""
+msgstr "Mostrar este diálogo ao iniciar"
#: templatedlg.ui
msgctxt ""
diff --git a/source/gl/starmath/source.po b/source/gl/starmath/source.po
index c9e9294a92c..6e90f984f9e 100644
--- a/source/gl/starmath/source.po
+++ b/source/gl/starmath/source.po
@@ -4,7 +4,7 @@ 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-12-01 12:11+0100\n"
-"PO-Revision-Date: 2016-07-04 22:44+0000\n"
+"PO-Revision-Date: 2017-02-18 21:34+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467672246.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487453660.000000\n"
#: commands.src
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"RID_XEVALUATEDATY_HELP\n"
"string.text"
msgid "Evaluated At"
-msgstr ""
+msgstr "Avaliado o"
#: commands.src
msgctxt ""
@@ -2476,7 +2476,7 @@ msgctxt ""
"RID_PRINTUIOPT_PRODNAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr ""
+msgstr "%PRODUCTNAME %s"
#: smres.src
msgctxt ""
@@ -2484,7 +2484,7 @@ msgctxt ""
"RID_PRINTUIOPT_CONTENTS\n"
"string.text"
msgid "Contents"
-msgstr ""
+msgstr "Contido"
#: smres.src
msgctxt ""
@@ -2492,7 +2492,7 @@ msgctxt ""
"RID_PRINTUIOPT_TITLE\n"
"string.text"
msgid "~Title"
-msgstr ""
+msgstr "~Título"
#: smres.src
msgctxt ""
@@ -2500,7 +2500,7 @@ msgctxt ""
"RID_PRINTUIOPT_FRMLTXT\n"
"string.text"
msgid "~Formula text"
-msgstr ""
+msgstr "Texto da ~fórmula"
#: smres.src
msgctxt ""
@@ -2508,7 +2508,7 @@ msgctxt ""
"RID_PRINTUIOPT_BORDERS\n"
"string.text"
msgid "B~orders"
-msgstr ""
+msgstr "B~ordos"
#: smres.src
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"RID_PRINTUIOPT_SIZE\n"
"string.text"
msgid "Size"
-msgstr ""
+msgstr "Tamaño"
#: smres.src
msgctxt ""
@@ -2524,7 +2524,7 @@ msgctxt ""
"RID_PRINTUIOPT_ORIGSIZE\n"
"string.text"
msgid "O~riginal size"
-msgstr ""
+msgstr "Tamaño o~rixinal"
#: smres.src
msgctxt ""
@@ -2532,7 +2532,7 @@ msgctxt ""
"RID_PRINTUIOPT_FITTOPAGE\n"
"string.text"
msgid "Fit to ~page"
-msgstr ""
+msgstr "Axustar á ~páxina"
#: smres.src
msgctxt ""
@@ -2540,7 +2540,7 @@ msgctxt ""
"RID_PRINTUIOPT_SCALING\n"
"string.text"
msgid "~Scaling"
-msgstr ""
+msgstr "~Ampliación"
#: symbol.src
msgctxt ""
diff --git a/source/gl/svtools/source/java.po b/source/gl/svtools/source/java.po
index 24bf12ae70a..e9fdbefdb64 100644
--- a/source/gl/svtools/source/java.po
+++ b/source/gl/svtools/source/java.po
@@ -4,7 +4,7 @@ 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-07-04 22:44+0000\n"
+"PO-Revision-Date: 2017-02-16 22:24+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467672285.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283852.000000\n"
#: javaerror.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_WARNING_JAVANOTFOUND_MAC\n"
"string.text"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on Mac OS X 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
-msgstr ""
+msgstr "O %PRODUCTNAME require o Java Development Kit (JDK) de Oracle en Mac OS X 10.10 ou posterior para realizar esta tarefa. Instáleo e reinicie o %PRODUCTNAME."
#: javaerror.src
msgctxt ""
diff --git a/source/gl/svtools/source/misc.po b/source/gl/svtools/source/misc.po
index 368e8c0118f..97eca6628fe 100644
--- a/source/gl/svtools/source/misc.po
+++ b/source/gl/svtools/source/misc.po
@@ -4,7 +4,7 @@ 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-07-04 22:44+0000\n"
+"PO-Revision-Date: 2017-02-16 23:11+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467672291.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487286695.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3876,7 +3876,7 @@ msgctxt ""
"LANGUAGE_USER_SILESIAN\n"
"pairedlist.text"
msgid "Silesian"
-msgstr ""
+msgstr "Silesiano"
#: langtab.src
msgctxt ""
@@ -3885,7 +3885,7 @@ msgctxt ""
"LANGUAGE_USER_HUNGARIAN_ROVAS\n"
"pairedlist.text"
msgid "Hungarian (Szekely-Hungarian Rovas)"
-msgstr ""
+msgstr "Húngaro (alfabeto rúnico)"
#: svtools.src
msgctxt ""
diff --git a/source/gl/svtools/uiconfig/ui.po b/source/gl/svtools/uiconfig/ui.po
index 12ebf5207e0..f9bcd1f79cd 100644
--- a/source/gl/svtools/uiconfig/ui.po
+++ b/source/gl/svtools/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-10-24 17:29+0000\n"
+"PO-Revision-Date: 2017-02-16 23:13+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1477330166.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487286791.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the extension to work properly, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Para que a extensión funcione correctamente debe reiniciar o %PRODUCTNAME."
#: restartdialog.ui
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For the OpenGL changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Para que os cambios de OpenGL sexan efectivos debe reiniciar o %PRODUCTNAME."
#: restartdialog.ui
msgctxt ""
diff --git a/source/gl/svx/source/dialog.po b/source/gl/svx/source/dialog.po
index 9c119fc15b5..c662c0a0765 100644
--- a/source/gl/svx/source/dialog.po
+++ b/source/gl/svx/source/dialog.po
@@ -4,7 +4,7 @@ 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-10-15 17:16+0000\n"
+"PO-Revision-Date: 2017-02-18 21:51+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476551809.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487454703.000000\n"
#: SafeMode.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_SAFEMODE_ZIP_FAILURE\n"
"string.text"
msgid "The zip file could not be created."
-msgstr ""
+msgstr "Non foi posíbel crear o arquivo zip."
#: bmpmask.src
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: page.src
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"A5\n"
"itemlist.text"
msgid "A5"
-msgstr ""
+msgstr "A5"
#: page.src
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"A4\n"
"itemlist.text"
msgid "A4"
-msgstr ""
+msgstr "A4"
#: page.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"A3\n"
"itemlist.text"
msgid "A3"
-msgstr ""
+msgstr "A3"
#: page.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"B6 (ISO)\n"
"itemlist.text"
msgid "B6 (ISO)"
-msgstr ""
+msgstr "B6 (ISO)"
#: page.src
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"B5 (ISO)\n"
"itemlist.text"
msgid "B5 (ISO)"
-msgstr ""
+msgstr "B5 (ISO)"
#: page.src
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"B4 (ISO)\n"
"itemlist.text"
msgid "B4 (ISO)"
-msgstr ""
+msgstr "B4 (ISO)"
#: page.src
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr ""
+msgstr "Carta"
#: page.src
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"Legal\n"
"itemlist.text"
msgid "Legal"
-msgstr ""
+msgstr "Oficio"
#: page.src
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"Long Bond\n"
"itemlist.text"
msgid "Long Bond"
-msgstr ""
+msgstr "Bond longo"
#: page.src
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"Tabloid\n"
"itemlist.text"
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloide"
#: page.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"B6 (JIS)\n"
"itemlist.text"
msgid "B6 (JIS)"
-msgstr ""
+msgstr "B6 (JIS)"
#: page.src
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"B5 (JIS)\n"
"itemlist.text"
msgid "B5 (JIS)"
-msgstr ""
+msgstr "B5 (JIS)"
#: page.src
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"B4 (JIS)\n"
"itemlist.text"
msgid "B4 (JIS)"
-msgstr ""
+msgstr "B4 (JIS)"
#: page.src
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"16 Kai\n"
"itemlist.text"
msgid "16 Kai"
-msgstr ""
+msgstr "16 Kai"
#: page.src
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"32 Kai\n"
"itemlist.text"
msgid "32 Kai"
-msgstr ""
+msgstr "32 Kai"
#: page.src
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"Big 32 Kai\n"
"itemlist.text"
msgid "Big 32 Kai"
-msgstr ""
+msgstr "32 Kai grande"
#: page.src
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"User\n"
"itemlist.text"
msgid "User"
-msgstr ""
+msgstr "Usuario"
#: page.src
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"DL Envelope\n"
"itemlist.text"
msgid "DL Envelope"
-msgstr ""
+msgstr "Sobre DL"
#: page.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"C6 Envelope\n"
"itemlist.text"
msgid "C6 Envelope"
-msgstr ""
+msgstr "Sobre C6"
#: page.src
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"C6/5 Envelope\n"
"itemlist.text"
msgid "C6/5 Envelope"
-msgstr ""
+msgstr "Sobre C6/5"
#: page.src
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"C5 Envelope\n"
"itemlist.text"
msgid "C5 Envelope"
-msgstr ""
+msgstr "Sobre C5"
#: page.src
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"C4 Envelope\n"
"itemlist.text"
msgid "C4 Envelope"
-msgstr ""
+msgstr "Sobre C4"
#: page.src
msgctxt ""
@@ -626,7 +626,7 @@ msgctxt ""
"#6¾ Envelope\n"
"itemlist.text"
msgid "#6¾ Envelope"
-msgstr ""
+msgstr "Sobre #6 ¾"
#: page.src
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"#7¾ (Monarch) Envelope\n"
"itemlist.text"
msgid "#7¾ (Monarch) Envelope"
-msgstr ""
+msgstr "Sobre #7 ¾ (Monarca)"
#: page.src
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"#9 Envelope\n"
"itemlist.text"
msgid "#9 Envelope"
-msgstr ""
+msgstr "Sobre #9"
#: page.src
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"#10 Envelope\n"
"itemlist.text"
msgid "#10 Envelope"
-msgstr ""
+msgstr "Sobre #10"
#: page.src
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"#11 Envelope\n"
"itemlist.text"
msgid "#11 Envelope"
-msgstr ""
+msgstr "Sobre #11"
#: page.src
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"#12 Envelope\n"
"itemlist.text"
msgid "#12 Envelope"
-msgstr ""
+msgstr "Sobre #12"
#: page.src
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"Japanese Postcard\n"
"itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Postal xaponesa"
#: page.src
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: page.src
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"A5\n"
"itemlist.text"
msgid "A5"
-msgstr ""
+msgstr "A5"
#: page.src
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"A4\n"
"itemlist.text"
msgid "A4"
-msgstr ""
+msgstr "A4"
#: page.src
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"A3\n"
"itemlist.text"
msgid "A3"
-msgstr ""
+msgstr "A3"
#: page.src
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"A2\n"
"itemlist.text"
msgid "A2"
-msgstr ""
+msgstr "A2"
#: page.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"A1\n"
"itemlist.text"
msgid "A1"
-msgstr ""
+msgstr "A1"
#: page.src
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"A0\n"
"itemlist.text"
msgid "A0"
-msgstr ""
+msgstr "A0"
#: page.src
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"B6 (ISO)\n"
"itemlist.text"
msgid "B6 (ISO)"
-msgstr ""
+msgstr "B6 (ISO)"
#: page.src
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"B5 (ISO)\n"
"itemlist.text"
msgid "B5 (ISO)"
-msgstr ""
+msgstr "B5 (ISO)"
#: page.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"B4 (ISO)\n"
"itemlist.text"
msgid "B4 (ISO)"
-msgstr ""
+msgstr "B4 (ISO)"
#: page.src
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr ""
+msgstr "Carta"
#: page.src
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"Legal\n"
"itemlist.text"
msgid "Legal"
-msgstr ""
+msgstr "Oficio"
#: page.src
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"Long Bond\n"
"itemlist.text"
msgid "Long Bond"
-msgstr ""
+msgstr "Bond longo"
#: page.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"Tabloid\n"
"itemlist.text"
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloide"
#: page.src
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"B6 (JIS)\n"
"itemlist.text"
msgid "B6 (JIS)"
-msgstr ""
+msgstr "B6 (JIS)"
#: page.src
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"B5 (JIS)\n"
"itemlist.text"
msgid "B5 (JIS)"
-msgstr ""
+msgstr "B5 (JIS)"
#: page.src
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"B4 (JIS)\n"
"itemlist.text"
msgid "B4 (JIS)"
-msgstr ""
+msgstr "B4 (JIS)"
#: page.src
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"16 Kai\n"
"itemlist.text"
msgid "16 Kai"
-msgstr ""
+msgstr "16 Kai"
#: page.src
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"32 Kai\n"
"itemlist.text"
msgid "32 Kai"
-msgstr ""
+msgstr "32 Kai"
#: page.src
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"Big 32 Kai\n"
"itemlist.text"
msgid "Big 32 Kai"
-msgstr ""
+msgstr "32 Kai grande"
#: page.src
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"User\n"
"itemlist.text"
msgid "User"
-msgstr ""
+msgstr "Usuario"
#: page.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"DL Envelope\n"
"itemlist.text"
msgid "DL Envelope"
-msgstr ""
+msgstr "Sobre DL"
#: page.src
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"C6 Envelope\n"
"itemlist.text"
msgid "C6 Envelope"
-msgstr ""
+msgstr "Sobre C6"
#: page.src
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"C6/5 Envelope\n"
"itemlist.text"
msgid "C6/5 Envelope"
-msgstr ""
+msgstr "Sobre C6/5"
#: page.src
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"C5 Envelope\n"
"itemlist.text"
msgid "C5 Envelope"
-msgstr ""
+msgstr "Sobre C5"
#: page.src
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"C4 Envelope\n"
"itemlist.text"
msgid "C4 Envelope"
-msgstr ""
+msgstr "Sobre C4"
#: page.src
msgctxt ""
@@ -923,7 +923,7 @@ msgctxt ""
"Dia Slide\n"
"itemlist.text"
msgid "Dia Slide"
-msgstr ""
+msgstr "Diapositiva de Dia"
#: page.src
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"Screen 4:3\n"
"itemlist.text"
msgid "Screen 4:3"
-msgstr ""
+msgstr "Pantalla 4:3"
#: page.src
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"Screen 16:9\n"
"itemlist.text"
msgid "Screen 16:9"
-msgstr ""
+msgstr "Pantalla 16:9"
#: page.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"Screen 16:10\n"
"itemlist.text"
msgid "Screen 16:10"
-msgstr ""
+msgstr "Pantalla 16:10"
#: page.src
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"Japanese Postcard\n"
"itemlist.text"
msgid "Japanese Postcard"
-msgstr ""
+msgstr "Postal xaponesa"
#: pagenumbering.src
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"1, 2, 3, ...\n"
"itemlist.text"
msgid "1, 2, 3, ..."
-msgstr ""
+msgstr "1, 2, 3, ..."
#: pagenumbering.src
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"A, B, C, ...\n"
"itemlist.text"
msgid "A, B, C, ..."
-msgstr ""
+msgstr "A, B, C, ..."
#: pagenumbering.src
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"a, b, c, ...\n"
"itemlist.text"
msgid "a, b, c, ..."
-msgstr ""
+msgstr "a, b, c, ..."
#: pagenumbering.src
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"I, II, III, ...\n"
"itemlist.text"
msgid "I, II, III, ..."
-msgstr ""
+msgstr "I, II, III, ..."
#: pagenumbering.src
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"i, ii, iii, ...\n"
"itemlist.text"
msgid "i, ii, iii, ..."
-msgstr ""
+msgstr "i, ii, iii, ..."
#: pagenumbering.src
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ningunha"
#: pagenumbering.src
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"A, .., AA, .., AAA, ...\n"
"itemlist.text"
msgid "A, .., AA, .., AAA, ..."
-msgstr ""
+msgstr "A, .., AA, .., AAA, ..."
#: pagenumbering.src
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"a, .., aa, .., aaa, ...\n"
"itemlist.text"
msgid "a, .., aa, .., aaa, ..."
-msgstr ""
+msgstr "a, .., aa, .., aaa, ..."
#: pagenumbering.src
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Numeración nativa"
#: pagenumbering.src
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Búlgaro)"
#: pagenumbering.src
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Búlgaro)"
#: pagenumbering.src
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Búlgaro)"
#: pagenumbering.src
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Búlgaro)"
#: pagenumbering.src
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Ruso)"
#: pagenumbering.src
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Ruso)"
#: pagenumbering.src
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Ruso)"
#: pagenumbering.src
msgctxt ""
@@ -1112,7 +1112,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Ruso)"
#: pagenumbering.src
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Serbio)"
#: pagenumbering.src
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Serbio)"
#: pagenumbering.src
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Serbio)"
#: pagenumbering.src
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Serbio)"
#: pagenumbering.src
msgctxt ""
@@ -1157,7 +1157,7 @@ msgctxt ""
"Α, Β, Γ, ... (Greek Upper Letter)\n"
"itemlist.text"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
-msgstr ""
+msgstr "Α, Β, Γ, ... (Letra grega maiúscula)"
#: pagenumbering.src
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"α, β, γ, ... (Greek Lower Letter)\n"
"itemlist.text"
msgid "α, β, γ, ... (Greek Lower Letter)"
-msgstr ""
+msgstr "α, β, γ, ... (Letra grega minúscula)"
#: passwd.src
msgctxt ""
@@ -1354,7 +1354,7 @@ msgctxt ""
"All Pages\n"
"itemlist.text"
msgid "All Pages"
-msgstr ""
+msgstr "Todas as páxinas"
#: samecontent.src
msgctxt ""
@@ -1363,7 +1363,7 @@ msgctxt ""
"First Page\n"
"itemlist.text"
msgid "First Page"
-msgstr ""
+msgstr "Primeira páxina"
#: samecontent.src
msgctxt ""
@@ -1372,7 +1372,7 @@ msgctxt ""
"Left and Right Pages\n"
"itemlist.text"
msgid "Left and Right Pages"
-msgstr ""
+msgstr "Páxinas esquerda e dereita"
#: samecontent.src
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"First, Left and Right Pages\n"
"itemlist.text"
msgid "First, Left and Right Pages"
-msgstr ""
+msgstr "Primeira páxina, páxinas esquerda e dereita"
#: sdstring.src
msgctxt ""
@@ -1413,7 +1413,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN\n"
"string.text"
msgid "Pattern"
-msgstr ""
+msgstr "Patrón"
#: sdstring.src
msgctxt ""
@@ -1421,7 +1421,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN_UNTITLED\n"
"string.text"
msgid "Untitled Pattern"
-msgstr ""
+msgstr "Patrón sen título"
#: sdstring.src
msgctxt ""
@@ -2717,7 +2717,7 @@ msgctxt ""
"RID_SVXSTR_HATCH0\n"
"string.text"
msgid "Black 45 Degrees Wide"
-msgstr ""
+msgstr "Negro 45 graos de largura"
#: sdstring.src
msgctxt ""
@@ -2725,7 +2725,7 @@ msgctxt ""
"RID_SVXSTR_HATCH1\n"
"string.text"
msgid "Black 45 Degrees"
-msgstr ""
+msgstr "Negro 45 graos"
#: sdstring.src
msgctxt ""
@@ -2733,7 +2733,7 @@ msgctxt ""
"RID_SVXSTR_HATCH2\n"
"string.text"
msgid "Black -45 Degrees"
-msgstr ""
+msgstr "Negro -45 graos"
#: sdstring.src
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"RID_SVXSTR_HATCH3\n"
"string.text"
msgid "Black 90 Degrees"
-msgstr ""
+msgstr "Negro 90 graos"
#: sdstring.src
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"RID_SVXSTR_HATCH4\n"
"string.text"
msgid "Red Crossed 45 Degrees"
-msgstr ""
+msgstr "Vermello cruzado 45 graos"
#: sdstring.src
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"RID_SVXSTR_HATCH5\n"
"string.text"
msgid "Red Crossed 0 Degrees"
-msgstr ""
+msgstr "Vermello cruzado 0 graos"
#: sdstring.src
msgctxt ""
@@ -2765,7 +2765,7 @@ msgctxt ""
"RID_SVXSTR_HATCH6\n"
"string.text"
msgid "Blue Crossed 45 Degrees"
-msgstr ""
+msgstr "Azul cruzado 45 graos"
#: sdstring.src
msgctxt ""
@@ -2773,7 +2773,7 @@ msgctxt ""
"RID_SVXSTR_HATCH7\n"
"string.text"
msgid "Blue Crossed 0 Degrees"
-msgstr ""
+msgstr "Azul cruzado 0 graos"
#: sdstring.src
msgctxt ""
@@ -2781,7 +2781,7 @@ msgctxt ""
"RID_SVXSTR_HATCH8\n"
"string.text"
msgid "Blue Triple 90 Degrees"
-msgstr ""
+msgstr "Azul triplo 90 graos"
#: sdstring.src
msgctxt ""
@@ -2789,7 +2789,7 @@ msgctxt ""
"RID_SVXSTR_HATCH9\n"
"string.text"
msgid "Black 0 Degrees"
-msgstr ""
+msgstr "Negro 0 graos"
#: sdstring.src
msgctxt ""
@@ -2805,7 +2805,7 @@ msgctxt ""
"RID_SVXSTR_BMP0\n"
"string.text"
msgid "Empty"
-msgstr ""
+msgstr "Baleiro"
#: sdstring.src
msgctxt ""
@@ -3576,7 +3576,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERY_INPROGRESS\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION comezou a recuperar os documentos. Dependendo do tamaño dos documentos este proceso pode levar bastante tempo."
#: sdstring.src
msgctxt ""
@@ -3584,7 +3584,7 @@ msgctxt ""
"RID_SVXSTR_RECOVERYONLY_FINISH_DESCR\n"
"string.text"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
-msgstr ""
+msgstr "Concluíu a recuperación dos documentos. Prema en «Rematar» para ver os documentos."
#: sdstring.src
msgctxt ""
@@ -3617,7 +3617,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ningún"
#: spacing.src
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"Extra Small (1/16\")\n"
"itemlist.text"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Moi pequeno (1,58 mm)"
#: spacing.src
msgctxt ""
@@ -3635,7 +3635,7 @@ msgctxt ""
"Small (1/8\")\n"
"itemlist.text"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Pequeno (3,17mm)"
#: spacing.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Mediano pequeno (0,64 cm)"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Mediano (0,95 cm)"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Grande mediano (1,27 cm)"
#: spacing.src
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"Large (3/4\")\n"
"itemlist.text"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Grande (1,90cm)"
#: spacing.src
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Extra Large (1\")\n"
"itemlist.text"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Moi grande (2,54cm)"
#: srchdlg.src
msgctxt ""
@@ -7400,7 +7400,7 @@ msgctxt ""
"RID_SUBSETSTR_ADLAM\n"
"string.text"
msgid "Adlam"
-msgstr ""
+msgstr "Adlam"
#: ucsubset.src
msgctxt ""
@@ -7409,7 +7409,7 @@ msgctxt ""
"RID_SUBSETSTR_BHAIKSUKI\n"
"string.text"
msgid "Bhaiksuki"
-msgstr ""
+msgstr "Bhaiksuki"
#: ucsubset.src
msgctxt ""
@@ -7418,7 +7418,7 @@ msgctxt ""
"RID_SUBSETSTR_CYRILLIC_EXTENDED_C\n"
"string.text"
msgid "Cyrillic Extended-C"
-msgstr ""
+msgstr "Cirílico estendido C"
#: ucsubset.src
msgctxt ""
@@ -7427,7 +7427,7 @@ msgctxt ""
"RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT\n"
"string.text"
msgid "Glagolitic Supplement"
-msgstr ""
+msgstr "Suplemento glagolítico"
#: ucsubset.src
msgctxt ""
@@ -7436,7 +7436,7 @@ msgctxt ""
"RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION\n"
"string.text"
msgid "Ideographic Symbols and Punctuation"
-msgstr ""
+msgstr "Símbolos e puntuación ideográficos"
#: ucsubset.src
msgctxt ""
@@ -7445,7 +7445,7 @@ msgctxt ""
"RID_SUBSETSTR_MARCHEN\n"
"string.text"
msgid "Marchen"
-msgstr ""
+msgstr "Marchen"
#: ucsubset.src
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT\n"
"string.text"
msgid "Mongolian Supplement"
-msgstr ""
+msgstr "Suplemento mongol"
#: ucsubset.src
msgctxt ""
@@ -7463,7 +7463,7 @@ msgctxt ""
"RID_SUBSETSTR_NEWA\n"
"string.text"
msgid "Newa"
-msgstr ""
+msgstr "Newa"
#: ucsubset.src
msgctxt ""
@@ -7472,7 +7472,7 @@ msgctxt ""
"RID_SUBSETSTR_OSAGE\n"
"string.text"
msgid "Osage"
-msgstr ""
+msgstr "Osage"
#: ucsubset.src
msgctxt ""
@@ -7481,7 +7481,7 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT\n"
"string.text"
msgid "Tangut"
-msgstr ""
+msgstr "Tangut"
#: ucsubset.src
msgctxt ""
@@ -7490,4 +7490,4 @@ msgctxt ""
"RID_SUBSETSTR_TANGUT_COMPONENTS\n"
"string.text"
msgid "Tangut Components"
-msgstr ""
+msgstr "Compoñentes tangut"
diff --git a/source/gl/svx/source/form.po b/source/gl/svx/source/form.po
index f825a491beb..b213effed9b 100644
--- a/source/gl/svx/source/form.po
+++ b/source/gl/svx/source/form.po
@@ -4,7 +4,7 @@ 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-07-04 22:47+0000\n"
+"PO-Revision-Date: 2017-02-18 21:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467672434.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487455015.000000\n"
#: datanavi.src
msgctxt ""
@@ -813,7 +813,7 @@ msgctxt ""
"Table\n"
"itemlist.text"
msgid "Table"
-msgstr ""
+msgstr "Táboa"
#: fmstring.src
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"Query\n"
"itemlist.text"
msgid "Query"
-msgstr ""
+msgstr "Consulta"
#: fmstring.src
msgctxt ""
@@ -831,7 +831,7 @@ msgctxt ""
"SQL\n"
"itemlist.text"
msgid "SQL"
-msgstr ""
+msgstr "SQL"
#: fmstring.src
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"LIKE\n"
"itemlist.text"
msgid "LIKE"
-msgstr ""
+msgstr "LIKE"
#: fmstring.src
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"NOT\n"
"itemlist.text"
msgid "NOT"
-msgstr ""
+msgstr "NOT"
#: fmstring.src
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"EMPTY\n"
"itemlist.text"
msgid "EMPTY"
-msgstr ""
+msgstr "EMPTY"
#: fmstring.src
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"TRUE\n"
"itemlist.text"
msgid "TRUE"
-msgstr ""
+msgstr "TRUE"
#: fmstring.src
msgctxt ""
@@ -1320,7 +1320,7 @@ msgctxt ""
"FALSE\n"
"itemlist.text"
msgid "FALSE"
-msgstr ""
+msgstr "FALSE"
#: fmstring.src
msgctxt ""
@@ -1329,7 +1329,7 @@ msgctxt ""
"IS\n"
"itemlist.text"
msgid "IS"
-msgstr ""
+msgstr "IS"
#: fmstring.src
msgctxt ""
@@ -1338,7 +1338,7 @@ msgctxt ""
"BETWEEN\n"
"itemlist.text"
msgid "BETWEEN"
-msgstr ""
+msgstr "BETWEEN"
#: fmstring.src
msgctxt ""
@@ -1347,7 +1347,7 @@ msgctxt ""
"OR\n"
"itemlist.text"
msgid "OR"
-msgstr ""
+msgstr "OR"
#: fmstring.src
msgctxt ""
@@ -1356,7 +1356,7 @@ msgctxt ""
"AND\n"
"itemlist.text"
msgid "AND"
-msgstr ""
+msgstr "AND"
#: fmstring.src
msgctxt ""
@@ -1365,7 +1365,7 @@ msgctxt ""
"Average\n"
"itemlist.text"
msgid "Average"
-msgstr ""
+msgstr "Media"
#: fmstring.src
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"Count\n"
"itemlist.text"
msgid "Count"
-msgstr ""
+msgstr "Conta"
#: fmstring.src
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"Maximum\n"
"itemlist.text"
msgid "Maximum"
-msgstr ""
+msgstr "Máximo"
#: fmstring.src
msgctxt ""
@@ -1392,7 +1392,7 @@ msgctxt ""
"Minimum\n"
"itemlist.text"
msgid "Minimum"
-msgstr ""
+msgstr "Mínimo"
#: fmstring.src
msgctxt ""
@@ -1401,7 +1401,7 @@ msgctxt ""
"Sum\n"
"itemlist.text"
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: fmstring.src
msgctxt ""
@@ -1410,7 +1410,7 @@ msgctxt ""
"Every\n"
"itemlist.text"
msgid "Every"
-msgstr ""
+msgstr "Cada"
#: fmstring.src
msgctxt ""
@@ -1419,7 +1419,7 @@ msgctxt ""
"Any\n"
"itemlist.text"
msgid "Any"
-msgstr ""
+msgstr "Calquera"
#: fmstring.src
msgctxt ""
@@ -1428,7 +1428,7 @@ msgctxt ""
"Some\n"
"itemlist.text"
msgid "Some"
-msgstr ""
+msgstr "Algúns"
#: fmstring.src
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"STDDEV_POP\n"
"itemlist.text"
msgid "STDDEV_POP"
-msgstr ""
+msgstr "STDDEV_POP"
#: fmstring.src
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"STDDEV_SAMP\n"
"itemlist.text"
msgid "STDDEV_SAMP"
-msgstr ""
+msgstr "STDDEV_SAMP"
#: fmstring.src
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"VAR_SAMP\n"
"itemlist.text"
msgid "VAR_SAMP"
-msgstr ""
+msgstr "VAR_SAMP"
#: fmstring.src
msgctxt ""
@@ -1464,7 +1464,7 @@ msgctxt ""
"VAR_POP\n"
"itemlist.text"
msgid "VAR_POP"
-msgstr ""
+msgstr "VAR_POP"
#: fmstring.src
msgctxt ""
@@ -1473,7 +1473,7 @@ msgctxt ""
"Collect\n"
"itemlist.text"
msgid "Collect"
-msgstr ""
+msgstr "Recoller"
#: fmstring.src
msgctxt ""
@@ -1482,7 +1482,7 @@ msgctxt ""
"Fusion\n"
"itemlist.text"
msgid "Fusion"
-msgstr ""
+msgstr "Fusión"
#: fmstring.src
msgctxt ""
@@ -1491,7 +1491,7 @@ msgctxt ""
"Intersection\n"
"itemlist.text"
msgid "Intersection"
-msgstr ""
+msgstr "Intersección"
#: fmstring.src
msgctxt ""
diff --git a/source/gl/svx/source/src.po b/source/gl/svx/source/src.po
index 81e22e5f2f5..5f199da0412 100644
--- a/source/gl/svx/source/src.po
+++ b/source/gl/svx/source/src.po
@@ -4,7 +4,7 @@ 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-10-02 16:06+0000\n"
+"PO-Revision-Date: 2017-02-18 21:57+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475424374.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487455021.000000\n"
#: errtxt.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"ERRCODE_CLASS_READ\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Erro de lectura"
#: errtxt.src
msgctxt ""
diff --git a/source/gl/svx/source/stbctrls.po b/source/gl/svx/source/stbctrls.po
index b91a905648f..4376c8c09b4 100644
--- a/source/gl/svx/source/stbctrls.po
+++ b/source/gl/svx/source/stbctrls.po
@@ -4,7 +4,7 @@ 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-11-06 17:10+0000\n"
+"PO-Revision-Date: 2017-02-18 21:57+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478452252.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487455036.000000\n"
#: stbctrls.src
msgctxt ""
@@ -251,7 +251,7 @@ msgctxt ""
"RID_SIDEBAR_EMPTY_PANEL_TEXT\n"
"string.text"
msgid "Properties for the task that you are performing are not available for the current selection"
-msgstr ""
+msgstr "As propiedades da tarefa que está a realizar non están dispoñíbeis na selección actual"
#: stbctrls.src
msgctxt ""
diff --git a/source/gl/svx/source/svdraw.po b/source/gl/svx/source/svdraw.po
index 5daa768a53d..d865cbf2083 100644
--- a/source/gl/svx/source/svdraw.po
+++ b/source/gl/svx/source/svdraw.po
@@ -4,7 +4,7 @@ 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-10-03 20:48+0000\n"
+"PO-Revision-Date: 2017-02-18 21:57+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475527701.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487455068.000000\n"
#: svdstr.src
msgctxt ""
@@ -4913,10 +4913,9 @@ msgid "Font work"
msgstr "Fontwork"
#: svdstr.src
-#, fuzzy
msgctxt ""
"svdstr.src\n"
"STR_ObjNamePluralFONTWORK\n"
"string.text"
msgid "Font works"
-msgstr "font works"
+msgstr "Fontworks"
diff --git a/source/gl/svx/source/tbxctrls.po b/source/gl/svx/source/tbxctrls.po
index b72239f8cbe..b4e037f2f0e 100644
--- a/source/gl/svx/source/tbxctrls.po
+++ b/source/gl/svx/source/tbxctrls.po
@@ -4,7 +4,7 @@ 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-10-02 15:58+0000\n"
+"PO-Revision-Date: 2017-02-18 21:58+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475423884.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487455102.000000\n"
#: colrctrl.src
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"RID_SVXSTR_NOFILL\n"
"string.text"
msgid "No Fill"
-msgstr ""
+msgstr "Non encher"
#: tbcontrl.src
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"RID_SVXSTR_TRANSPARENT\n"
"string.text"
msgid "Transparent"
-msgstr ""
+msgstr "Transparente"
#: tbcontrl.src
msgctxt ""
@@ -577,7 +577,7 @@ msgctxt ""
"RID_SVX_PRESET_RENAME\n"
"menuitem.text"
msgid "Rename"
-msgstr ""
+msgstr "Renomear"
#: tbcontrl.src
msgctxt ""
@@ -586,7 +586,7 @@ msgctxt ""
"RID_SVX_PRESET_DELETE\n"
"menuitem.text"
msgid "Delete"
-msgstr ""
+msgstr "Eliminar"
#: tbcontrl.src
msgctxt ""
@@ -618,7 +618,7 @@ msgctxt ""
"RID_SVXSTR_BY_AUTHOR\n"
"string.text"
msgid "By author"
-msgstr ""
+msgstr "Por autor"
#: tbcontrl.src
msgctxt ""
@@ -682,7 +682,7 @@ msgctxt ""
"RID_SVXSTR_CUSTOM_PAL\n"
"string.text"
msgid "custom"
-msgstr ""
+msgstr "personalizado"
#: tbcontrl.src
msgctxt ""
diff --git a/source/gl/svx/uiconfig/ui.po b/source/gl/svx/uiconfig/ui.po
index 6e7a67346bb..ae6820f121c 100644
--- a/source/gl/svx/uiconfig/ui.po
+++ b/source/gl/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-12-21 15:38+0100\n"
-"PO-Revision-Date: 2016-12-09 18:41+0000\n"
+"PO-Revision-Date: 2017-02-18 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481308877.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487456706.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Texto base"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Texto base"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Texto ruby"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Texto base"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Texto ruby"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Ruby text"
-msgstr ""
+msgstr "Texto ruby"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Base text"
-msgstr ""
+msgstr "Texto base"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ningunha"
#: colorwindow.ui
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "JPEG Quality"
-msgstr ""
+msgstr "Calidade JPEG"
#: compressgraphicdialog.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossy compression"
-msgstr ""
+msgstr "Compresión con perdas"
#: compressgraphicdialog.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "PNG Compression"
-msgstr ""
+msgstr "Compresión PNG"
#: compressgraphicdialog.ui
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Lossless compression"
-msgstr ""
+msgstr "Compresión sen perdas"
#: compressgraphicdialog.ui
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "90"
-msgstr ""
+msgstr "90"
#: compressgraphicdialog.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "9"
-msgstr ""
+msgstr "9"
#: compressgraphicdialog.ui
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compression"
-msgstr ""
+msgstr "Compresión"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "1"
-msgstr ""
+msgstr "1"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Resolution"
-msgstr ""
+msgstr "Resolución"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calculate New Size:"
-msgstr ""
+msgstr "Calcular novo tamaño:"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restart LibreOffice to enter Safe Mode"
-msgstr ""
+msgstr "Reiniciar o LibreOffice para entrar no modo seguro"
#: datanavigator.ui
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lines & Arrows"
-msgstr ""
+msgstr "Liñas e frechas"
#: defaultshapespanel.ui
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Curve"
-msgstr ""
+msgstr "Curva"
#: defaultshapespanel.ui
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connectors"
-msgstr ""
+msgstr "Conectores"
#: defaultshapespanel.ui
msgctxt ""
@@ -1418,7 +1418,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Basic Shapes"
-msgstr ""
+msgstr "Formas básicas"
#: defaultshapespanel.ui
msgctxt ""
@@ -1427,7 +1427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Symbols"
-msgstr ""
+msgstr "Símbolos"
#: defaultshapespanel.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Block Arrows"
-msgstr ""
+msgstr "Frechas largas"
#: defaultshapespanel.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Flowchart"
-msgstr ""
+msgstr "Fluxograma"
#: defaultshapespanel.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Callouts"
-msgstr ""
+msgstr "Globos"
#: defaultshapespanel.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Stars"
-msgstr ""
+msgstr "Estrelas"
#: defaultshapespanel.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3D Objects"
-msgstr ""
+msgstr "Obxectos en 3D"
#: deletefooterdialog.ui
msgctxt ""
@@ -2345,7 +2345,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 2"
-msgstr ""
+msgstr "Cor de orixe 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2354,7 +2354,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 3"
-msgstr ""
+msgstr "Cor de orixe 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2363,7 +2363,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 4"
-msgstr ""
+msgstr "Cor de orixe 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2372,7 +2372,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Source Color 1"
-msgstr ""
+msgstr "Cor de orixe 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 1"
-msgstr ""
+msgstr "Tolerancia 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2399,7 +2399,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 2"
-msgstr ""
+msgstr "Tolerancia 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 3"
-msgstr ""
+msgstr "Tolerancia 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2417,7 +2417,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Tolerance 4"
-msgstr ""
+msgstr "Tolerancia 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2426,7 +2426,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 1"
-msgstr ""
+msgstr "Substituír por 1"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2435,7 +2435,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 2"
-msgstr ""
+msgstr "Substituír por 2"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2444,7 +2444,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 3"
-msgstr ""
+msgstr "Substituír por 3"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2453,7 +2453,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Replace with 4"
-msgstr ""
+msgstr "Substituír por 4"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2756,7 +2756,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "Recuperación de documentos do %PRODUCTNAME %PRODUCTVERSION"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2765,7 +2765,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Discard"
-msgstr ""
+msgstr "_Desbotar"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start"
-msgstr ""
+msgstr "_Iniciar"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2783,7 +2783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery."
-msgstr ""
+msgstr "O %PRODUCTNAME tentará recuperar o estado dos ficheiros nos que estaba a traballar cando se produciu a falla. Prema en «Iniciar» para comezar o proceso ou prema en «Desbotar» para cancelar a recuperación."
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2819,7 +2819,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION Document Recovery"
-msgstr ""
+msgstr "Recuperación de documentos do %PRODUCTNAME %PRODUCTVERSION"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2900,7 +2900,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "For_matted display"
-msgstr ""
+msgstr "Vista for_matada"
#: findreplacedialog.ui
msgctxt ""
@@ -2927,7 +2927,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All _sheets"
-msgstr ""
+msgstr "Toda_s as follas"
#: findreplacedialog.ui
msgctxt ""
@@ -2972,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Pre_vious"
-msgstr ""
+msgstr "Atopar o _anterior"
#: findreplacedialog.ui
msgctxt ""
@@ -2981,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find Ne_xt"
-msgstr ""
+msgstr "Atopar o seg_uinte"
#: findreplacedialog.ui
msgctxt ""
@@ -3017,7 +3017,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Re_gular expressions"
-msgstr ""
+msgstr "E_xpresións regulares"
#: findreplacedialog.ui
msgctxt ""
@@ -3026,7 +3026,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Attribut_es..."
-msgstr ""
+msgstr "A_tributos..."
#: findreplacedialog.ui
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore diac_ritics"
-msgstr ""
+msgstr "Ignorar os diac_ríticos"
#: findreplacedialog.ui
msgctxt ""
@@ -3071,7 +3071,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore _kashida"
-msgstr ""
+msgstr "Ignorar _kashida"
#: findreplacedialog.ui
msgctxt ""
@@ -3107,7 +3107,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds like (_Japanese)"
-msgstr ""
+msgstr "Pronúnciase (_xaponés)"
#: findreplacedialog.ui
msgctxt ""
@@ -3143,7 +3143,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace _backwards"
-msgstr ""
+msgstr "Substituír cara a_trás"
#: findreplacedialog.ui
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colum_ns"
-msgstr ""
+msgstr "Colu_mnas"
#: findreplacedialog.ui
msgctxt ""
@@ -3224,7 +3224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Angle:"
-msgstr ""
+msgstr "_Ángulo:"
#: floatingareastyle.ui
msgctxt ""
@@ -3233,7 +3233,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the angle of rotation for the gradient shading style."
-msgstr ""
+msgstr "Especifique o ángulo de rotación do estilo da sombra do gradiente."
#: floatingareastyle.ui
msgctxt ""
@@ -3242,7 +3242,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate counterclockwise by 45 degrees."
-msgstr ""
+msgstr "Rotar 45 graos no sentido contrahorario."
#: floatingareastyle.ui
msgctxt ""
@@ -3251,7 +3251,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate clockwise by 45 degrees."
-msgstr ""
+msgstr "Rotar 45 graos no sentido horario."
#: floatingareastyle.ui
msgctxt ""
@@ -3260,7 +3260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start value:"
-msgstr ""
+msgstr "Valor _inicial:"
#: floatingareastyle.ui
msgctxt ""
@@ -3269,7 +3269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_End value:"
-msgstr ""
+msgstr "Valor _final:"
#: floatingareastyle.ui
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Introduza un valor de transparencia para o punto de comezo do gradiente, entre o 0% que sería totalmente opaco e o 100%, totalmente transparente."
#: floatingareastyle.ui
msgctxt ""
@@ -3287,7 +3287,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "Introduza un valor de transparencia para o punto de remate do gradiente, entre o 0% que sería totalmente opaco e o 100%, totalmente transparente."
#: floatingareastyle.ui
msgctxt ""
@@ -3296,7 +3296,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3305,7 +3305,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Border:"
-msgstr ""
+msgstr "_Bordo:"
#: floatingareastyle.ui
msgctxt ""
@@ -3314,7 +3314,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the border value of gradient transparency."
-msgstr ""
+msgstr "Especifique o valor do bordo da transparencia da gradación."
#: floatingareastyle.ui
msgctxt ""
@@ -3323,7 +3323,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3332,7 +3332,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _X:"
-msgstr ""
+msgstr "Centro _X:"
#: floatingareastyle.ui
msgctxt ""
@@ -3341,7 +3341,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Center _Y:"
-msgstr ""
+msgstr "Centro _Y:"
#: floatingareastyle.ui
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center."
-msgstr ""
+msgstr "Especifique a porcentaxe de desprazamento horizontal a partir do centro para o estilo de sombra do gradiente. O 50% é o centro horizontal."
#: floatingareastyle.ui
msgctxt ""
@@ -3359,7 +3359,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingareastyle.ui
msgctxt ""
@@ -3368,7 +3368,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
-msgstr ""
+msgstr "Especifique a porcentaxe de desprazamento vertical a partir do centro para o estilo de sombra do gradiente. O 50% é o centro vertical."
#: floatingareastyle.ui
msgctxt ""
@@ -3377,7 +3377,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0"
-msgstr ""
+msgstr "0"
#: floatingcontour.ui
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same _content on left and right pages"
-msgstr ""
+msgstr "O mesmo _contido nas páxinas esquerda e dereita."
#: headfootformatpage.ui
msgctxt ""
@@ -3977,7 +3977,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Playback:"
-msgstr ""
+msgstr "Reprodución:"
#: mediaplayback.ui
msgctxt ""
@@ -3986,7 +3986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Seek:"
-msgstr ""
+msgstr "Buscar:"
#: mediaplayback.ui
msgctxt ""
@@ -3995,7 +3995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume:"
-msgstr ""
+msgstr "Volume:"
#: mediaplayback.ui
msgctxt ""
@@ -4004,7 +4004,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Ver"
#: namespacedialog.ui
msgctxt ""
@@ -4328,7 +4328,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.15 Lines"
-msgstr ""
+msgstr "1,15 liñas "
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4337,7 +4337,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "1,5 liñas"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4346,7 +4346,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Duplo"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4355,7 +4355,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Proporcional"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4364,7 +4364,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Cando menos"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4373,7 +4373,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Entreliña"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Fixed"
-msgstr ""
+msgstr "Fixo"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -4409,7 +4409,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Antes"
#: paralrspacing.ui
msgctxt ""
@@ -4418,7 +4418,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Sangrado antes do texto"
#: paralrspacing.ui
msgctxt ""
@@ -4427,7 +4427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Despois"
#: paralrspacing.ui
msgctxt ""
@@ -4436,7 +4436,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Sangrado despois do texto"
#: paralrspacing.ui
msgctxt ""
@@ -4445,7 +4445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "First line"
-msgstr ""
+msgstr "Primeira liña"
#: paralrspacing.ui
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Sangrado de primeira liña"
#: paraulspacing.ui
msgctxt ""
@@ -4463,7 +4463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Above"
-msgstr ""
+msgstr "Arriba"
#: paraulspacing.ui
msgctxt ""
@@ -4472,7 +4472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Below"
-msgstr ""
+msgstr "Abaixo"
#: paraulspacing.ui
msgctxt ""
@@ -4481,7 +4481,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Espazamento antes do parágrafo"
#: paraulspacing.ui
msgctxt ""
@@ -4490,7 +4490,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Espazamento despois do parágrafo"
#: passwd.ui
msgctxt ""
@@ -4553,7 +4553,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Profile exported"
-msgstr ""
+msgstr "Perfil exportado"
#: profileexporteddialog.ui
msgctxt ""
@@ -4562,7 +4562,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open Containing _Folder"
-msgstr ""
+msgstr "Abrir o cartafol _contedor"
#: profileexporteddialog.ui
msgctxt ""
@@ -4571,7 +4571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Your user profile has been exported as “libreoffice-profile.zip”."
-msgstr ""
+msgstr "O seu perfil de usuario foi exportado como «libreoffice-profile.zip»."
#: querydeletecontourdialog.ui
msgctxt ""
@@ -4818,7 +4818,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Comment"
-msgstr ""
+msgstr "Comentario"
#: redlinefilterpage.ui
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: redlinefilterpage.ui
msgctxt ""
@@ -4863,7 +4863,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Range"
-msgstr ""
+msgstr "Intervalo"
#: redlinefilterpage.ui
msgctxt ""
@@ -5061,7 +5061,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Safe Mode"
-msgstr ""
+msgstr "Modo seguro"
#: safemodedialog.ui
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Continue in Safe Mode"
-msgstr ""
+msgstr "_Continuar no modo seguro"
#: safemodedialog.ui
msgctxt ""
@@ -5079,7 +5079,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Quit"
-msgstr ""
+msgstr "_Saír"
#: safemodedialog.ui
msgctxt ""
@@ -5088,7 +5088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr ""
+msgstr "_Aplicar os cambios e reiniciar"
#: safemodedialog.ui
msgctxt ""
@@ -5103,6 +5103,11 @@ msgid ""
"\n"
"The proposed changes get more radical from top down so it is recommended to try them successively one after another."
msgstr ""
+"O %PRODUCTNAME está agora a ser executado no modo seguro, que desactiva temporalmente a configuración e as extensións do usuario.\n"
+"\n"
+"Pode realizar unha ou máis dos cambios seguintes ao seu perfil de usuario para tornar o %PRODUCTNAME funcional de novo.\n"
+"\n"
+"Os cambios propostos fanse máis radicais de arriba a abaixo, polo que se recomenda probalas sucesivamente unha tras outra."
#: safemodedialog.ui
msgctxt ""
@@ -5111,7 +5116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore from backup"
-msgstr ""
+msgstr "Restabelecer desde unha copia de seguranza"
#: safemodedialog.ui
msgctxt ""
@@ -5120,7 +5125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore user configuration to the last known working state"
-msgstr ""
+msgstr "Restaurar a configuración do usuario ao último estado funcional coñecido"
#: safemodedialog.ui
msgctxt ""
@@ -5129,7 +5134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Restore state of installed user extensions to the last known working state"
-msgstr ""
+msgstr "Restaurar o estado das extensións de usuario instaladas ao último estado funcional coñecido."
#: safemodedialog.ui
msgctxt ""
@@ -5138,7 +5143,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Configure"
-msgstr ""
+msgstr "Configurar"
#: safemodedialog.ui
msgctxt ""
@@ -5147,7 +5152,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Desactivar todas as extensións de usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5156,7 +5161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable hardware acceleration (OpenGL, OpenCL)"
-msgstr ""
+msgstr "Desactivar a aceleración por hardware (OpenGL, OpenCL)"
#: safemodedialog.ui
msgctxt ""
@@ -5165,7 +5170,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extensions"
-msgstr ""
+msgstr "Extensións"
#: safemodedialog.ui
msgctxt ""
@@ -5174,7 +5179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Uninstall all user extensions"
-msgstr ""
+msgstr "Desinstalar todas as extensións do usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5183,7 +5188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of shared extensions"
-msgstr ""
+msgstr "Restaurar o estado das extensións compartidas"
#: safemodedialog.ui
msgctxt ""
@@ -5192,7 +5197,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset state of bundled extensions"
-msgstr ""
+msgstr "Restaurar o estado das extensións incorporadas"
#: safemodedialog.ui
msgctxt ""
@@ -5201,7 +5206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset to factory settings"
-msgstr ""
+msgstr "Restaurar a configuración de fábrica"
#: safemodedialog.ui
msgctxt ""
@@ -5210,7 +5215,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset settings and user interface modifications"
-msgstr ""
+msgstr "Restaurar a configuración e as modificacións da interface do usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5219,7 +5224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset entire user profile"
-msgstr ""
+msgstr "Restaurar o perfil completo do usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5228,7 +5233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "If you experience problems that are not resolved by using safe mode, visit the following link to get help or report a bug."
-msgstr ""
+msgstr "Se persisten problemas que non se resolvesen empregando o modo seguro, visite a ligazón seguinte para obter axuda ou informar dun erro."
#: safemodedialog.ui
msgctxt ""
@@ -5237,7 +5242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get Help"
-msgstr ""
+msgstr "Obter axuda"
#: safemodedialog.ui
msgctxt ""
@@ -5246,7 +5251,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "You can also include relevant parts of your user profile in the bugreport (be aware it might contain personal data)."
-msgstr ""
+msgstr "Tamén pode incluír as partes relevantes do seu perfil de usuario no informe de erro (teña en conta que poden conter datos persoais)."
#: safemodedialog.ui
msgctxt ""
@@ -5255,7 +5260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Zip Archive from User Profile"
-msgstr ""
+msgstr "Crear un arquivo zip do perfil do usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5264,7 +5269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show User Profile"
-msgstr ""
+msgstr "Mostrar o perfil do usuario"
#: safemodedialog.ui
msgctxt ""
@@ -5273,7 +5278,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Advanced"
-msgstr ""
+msgstr "Avanzado"
#: savemodifieddialog.ui
msgctxt ""
@@ -5453,7 +5458,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Import"
-msgstr ""
+msgstr "_Importar"
#: sidebararea.ui
msgctxt ""
@@ -5687,7 +5692,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color mode"
-msgstr ""
+msgstr "Modo de cor"
#: sidebargraphic.ui
msgctxt ""
@@ -5732,7 +5737,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Vermello"
#: sidebargraphic.ui
msgctxt ""
@@ -5750,7 +5755,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Verde"
#: sidebargraphic.ui
msgctxt ""
@@ -5768,7 +5773,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Azul"
#: sidebargraphic.ui
msgctxt ""
@@ -6092,7 +6097,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Above Paragraph Spacing"
-msgstr ""
+msgstr "Espazamento antes do parágrafo"
#: sidebarparagraph.ui
msgctxt ""
@@ -6110,7 +6115,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Below Paragraph Spacing"
-msgstr ""
+msgstr "Espazamento despois do parágrafo"
#: sidebarparagraph.ui
msgctxt ""
@@ -6182,7 +6187,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Sangrado antes do texto"
#: sidebarparagraph.ui
msgctxt ""
@@ -6200,7 +6205,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Sangrado despois do texto"
#: sidebarparagraph.ui
msgctxt ""
@@ -6218,7 +6223,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "First Line Indent"
-msgstr ""
+msgstr "Sangrado de primeira liña"
#: sidebarparagraph.ui
msgctxt ""
@@ -6236,7 +6241,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _X:"
-msgstr ""
+msgstr "Posición _X:"
#: sidebarpossize.ui
msgctxt ""
@@ -6263,7 +6268,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position _Y:"
-msgstr ""
+msgstr "Posición _Y:"
#: sidebarpossize.ui
msgctxt ""
diff --git a/source/gl/sw/source/core/undo.po b/source/gl/sw/source/core/undo.po
index 05e2a3bff7c..c7bdcb24a14 100644
--- a/source/gl/sw/source/core/undo.po
+++ b/source/gl/sw/source/core/undo.po
@@ -4,7 +4,7 @@ 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-01-21 16:49+0000\n"
+"PO-Revision-Date: 2017-02-16 23:09+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1453394940.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487286543.000000\n"
#: undo.src
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_CREATE\n"
"string.text"
msgid "Create table style: $1"
-msgstr ""
+msgstr "Crear estilo de táboa: $1"
#: undo.src
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_DELETE\n"
"string.text"
msgid "Delete table style: $1"
-msgstr ""
+msgstr "Eliminar estilo de táboa: $1"
#: undo.src
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"STR_UNDO_TBLSTYLE_UPDATE\n"
"string.text"
msgid "Update table style: $1"
-msgstr ""
+msgstr "Actualizar estilo de táboa: $1"
#: undo.src
msgctxt ""
diff --git a/source/gl/sw/source/core/unocore.po b/source/gl/sw/source/core/unocore.po
index 1374454f022..c9222c05c60 100644
--- a/source/gl/sw/source/core/unocore.po
+++ b/source/gl/sw/source/core/unocore.po
@@ -4,7 +4,7 @@ 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-10-02 16:19+0000\n"
+"PO-Revision-Date: 2017-02-18 22:25+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475425151.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487456725.000000\n"
#: unocore.src
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"STR_STYLE_FAMILY_CELL\n"
"string.text"
msgid "Cell"
-msgstr ""
+msgstr "Cela"
diff --git a/source/gl/sw/source/ui/app.po b/source/gl/sw/source/ui/app.po
index 1cede0ccf00..5338048dde6 100644
--- a/source/gl/sw/source/ui/app.po
+++ b/source/gl/sw/source/ui/app.po
@@ -4,7 +4,7 @@ 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-11-06 17:12+0000\n"
+"PO-Revision-Date: 2017-02-18 22:28+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478452352.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487456888.000000\n"
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_PARAGRAPHSTYLEFAMILY\n"
"string.text"
msgid "Paragraph Styles"
-msgstr ""
+msgstr "Estilos de parágrafos"
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_CHARACTERSTYLEFAMILY\n"
"string.text"
msgid "Character Styles"
-msgstr ""
+msgstr "Estilos de carácter"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_FRAMESTYLEFAMILY\n"
"string.text"
msgid "Frame Styles"
-msgstr ""
+msgstr "Estilos de marco"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_PAGESTYLEFAMILY\n"
"string.text"
msgid "Page Styles"
-msgstr ""
+msgstr "Estilos de páxina"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_LISTSTYLEFAMILY\n"
"string.text"
msgid "List Styles"
-msgstr ""
+msgstr "Estilos de lista"
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TABLESTYLEFAMILY\n"
"string.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Estilos de táboa"
#: app.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "Todos os estilos"
#: app.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "Automático"
#: app.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"Text Styles\n"
"itemlist.text"
msgid "Text Styles"
-msgstr ""
+msgstr "Estilos de texto"
#: app.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"Chapter Styles\n"
"itemlist.text"
msgid "Chapter Styles"
-msgstr ""
+msgstr "Estilos de capítulo"
#: app.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"List Styles\n"
"itemlist.text"
msgid "List Styles"
-msgstr ""
+msgstr "Estilos de lista"
#: app.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"Index Styles\n"
"itemlist.text"
msgid "Index Styles"
-msgstr ""
+msgstr "Estilos de índice"
#: app.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"Special Styles\n"
"itemlist.text"
msgid "Special Styles"
-msgstr ""
+msgstr "Estilos especiais"
#: app.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"HTML Styles\n"
"itemlist.text"
msgid "HTML Styles"
-msgstr ""
+msgstr "Estilos HTML"
#: app.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"Conditional Styles\n"
"itemlist.text"
msgid "Conditional Styles"
-msgstr ""
+msgstr "Estilos condicionais"
#: app.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Todos"
#: app.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Todos"
#: app.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Todos"
#: app.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Todos"
#: app.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -321,7 +321,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -339,7 +339,7 @@ msgctxt ""
"All\n"
"itemlist.text"
msgid "All"
-msgstr ""
+msgstr "Todos"
#: app.src
msgctxt ""
@@ -348,7 +348,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "Estilos agochados"
#: app.src
msgctxt ""
@@ -357,7 +357,7 @@ msgctxt ""
"Applied Styles\n"
"itemlist.text"
msgid "Applied Styles"
-msgstr ""
+msgstr "Estilos aplicados"
#: app.src
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "Estilos personalizados"
#: app.src
msgctxt ""
@@ -1148,7 +1148,7 @@ msgctxt ""
"STR_COMCORE_READERROR\n"
"string.text"
msgid "Read Error"
-msgstr ""
+msgstr "Erro de lectura"
#: error.src
msgctxt ""
diff --git a/source/gl/sw/source/ui/index.po b/source/gl/sw/source/ui/index.po
index bca73cb731e..30ff7357592 100644
--- a/source/gl/sw/source/ui/index.po
+++ b/source/gl/sw/source/ui/index.po
@@ -4,7 +4,7 @@ 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-07-04 22:56+0000\n"
+"PO-Revision-Date: 2017-02-18 22:29+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467672975.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487456941.000000\n"
#: cnttab.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"%PRODUCTNAME Math\n"
"itemlist.text"
msgid "%PRODUCTNAME Math"
-msgstr ""
+msgstr "Math de %PRODUCTNAME"
#: cnttab.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"%PRODUCTNAME Chart\n"
"itemlist.text"
msgid "%PRODUCTNAME Chart"
-msgstr ""
+msgstr "Gráfica de %PRODUCTNAME"
#: cnttab.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"%PRODUCTNAME Calc\n"
"itemlist.text"
msgid "%PRODUCTNAME Calc"
-msgstr ""
+msgstr "Calc de %PRODUCTNAME"
#: cnttab.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"%PRODUCTNAME Draw/%PRODUCTNAME Impress\n"
"itemlist.text"
msgid "%PRODUCTNAME Draw/%PRODUCTNAME Impress"
-msgstr ""
+msgstr "Draw de %PRODUCTNAME/Impress de %PRODUCTNAME"
#: cnttab.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"Other OLE Objects\n"
"itemlist.text"
msgid "Other OLE Objects"
-msgstr ""
+msgstr "Outros obxectos OLE"
#: cnttab.src
msgctxt ""
diff --git a/source/gl/sw/source/ui/misc.po b/source/gl/sw/source/ui/misc.po
index 454a775f5ed..4473f531b05 100644
--- a/source/gl/sw/source/ui/misc.po
+++ b/source/gl/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ 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-10-05 21:17+0000\n"
+"PO-Revision-Date: 2017-02-18 22:30+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475702266.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487457028.000000\n"
#: glossary.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"None\n"
"itemlist.text"
msgid "None"
-msgstr ""
+msgstr "Ningún"
#: numberingtypelistbox.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Bullet\n"
"itemlist.text"
msgid "Bullet"
-msgstr ""
+msgstr "Punto"
#: numberingtypelistbox.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Graphics\n"
"itemlist.text"
msgid "Graphics"
-msgstr ""
+msgstr "Gráficos"
#: numberingtypelistbox.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"1, 2, 3, ...\n"
"itemlist.text"
msgid "1, 2, 3, ..."
-msgstr ""
+msgstr "1, 2, 3, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -123,7 +123,7 @@ msgctxt ""
"A, B, C, ...\n"
"itemlist.text"
msgid "A, B, C, ..."
-msgstr ""
+msgstr "A, B, C, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"a, b, c, ...\n"
"itemlist.text"
msgid "a, b, c, ..."
-msgstr ""
+msgstr "a, b, c, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -141,7 +141,7 @@ msgctxt ""
"I, II, III, ...\n"
"itemlist.text"
msgid "I, II, III, ..."
-msgstr ""
+msgstr "I, II, III, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"i, ii, iii, ...\n"
"itemlist.text"
msgid "i, ii, iii, ..."
-msgstr ""
+msgstr "i, ii, iii, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"A, .., AA, .., AAA, ...\n"
"itemlist.text"
msgid "A, .., AA, .., AAA, ..."
-msgstr ""
+msgstr "A, .., AA, .., AAA, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -168,7 +168,7 @@ msgctxt ""
"a, .., aa, .., aaa, ...\n"
"itemlist.text"
msgid "a, .., aa, .., aaa, ..."
-msgstr ""
+msgstr "a, .., aa, .., aaa, ..."
#: numberingtypelistbox.src
msgctxt ""
@@ -177,7 +177,7 @@ msgctxt ""
"Native Numbering\n"
"itemlist.text"
msgid "Native Numbering"
-msgstr ""
+msgstr "Numeración nativa"
#: numberingtypelistbox.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Búlgaro)"
#: numberingtypelistbox.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Búlgaro)"
#: numberingtypelistbox.src
msgctxt ""
@@ -204,7 +204,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Búlgaro)"
#: numberingtypelistbox.src
msgctxt ""
@@ -213,7 +213,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Bulgarian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Búlgaro)"
#: numberingtypelistbox.src
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Ruso)"
#: numberingtypelistbox.src
msgctxt ""
@@ -231,7 +231,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Ruso)"
#: numberingtypelistbox.src
msgctxt ""
@@ -240,7 +240,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Russian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Ruso)"
#: numberingtypelistbox.src
msgctxt ""
@@ -249,7 +249,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Russian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Russian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Ruso)"
#: numberingtypelistbox.src
msgctxt ""
@@ -258,7 +258,7 @@ msgctxt ""
"А, Б, .., Аа, Аб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Аб, ... (Serbio)"
#: numberingtypelistbox.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"а, б, .., аа, аб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, аб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, аб, ... (Serbio)"
#: numberingtypelistbox.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"А, Б, .., Аа, Бб, ... (Serbian)\n"
"itemlist.text"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
-msgstr ""
+msgstr "А, Б, .., Аа, Бб, ... (Serbio)"
#: numberingtypelistbox.src
msgctxt ""
@@ -285,7 +285,7 @@ msgctxt ""
"а, б, .., аа, бб, ... (Serbian)\n"
"itemlist.text"
msgid "а, б, .., аа, бб, ... (Serbian)"
-msgstr ""
+msgstr "а, б, .., аа, бб, ... (Serbio)"
#: numberingtypelistbox.src
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"Α, Β, Γ, ... (Greek Upper Letter)\n"
"itemlist.text"
msgid "Α, Β, Γ, ... (Greek Upper Letter)"
-msgstr ""
+msgstr "Α, Β, Γ, ... (Letra grega maiúscula)"
#: numberingtypelistbox.src
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"α, β, γ, ... (Greek Lower Letter)\n"
"itemlist.text"
msgid "α, β, γ, ... (Greek Lower Letter)"
-msgstr ""
+msgstr "α, β, γ, ... (Letra grega minúscula)"
#: swruler.src
msgctxt ""
diff --git a/source/gl/sw/source/ui/sidebar.po b/source/gl/sw/source/ui/sidebar.po
index 1cd90bbed0c..91cb42c064f 100644
--- a/source/gl/sw/source/ui/sidebar.po
+++ b/source/gl/sw/source/ui/sidebar.po
@@ -4,7 +4,7 @@ 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: 2013-11-26 15:48+0000\n"
+"PO-Revision-Date: 2017-02-18 22:30+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1385480929.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487457055.000000\n"
#: PagePropertyPanel.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_LEFT\n"
"string.text"
msgid "Left: "
-msgstr ""
+msgstr "Esquerda: "
#: PagePropertyPanel.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_RIGHT\n"
"string.text"
msgid ". Right: "
-msgstr ""
+msgstr ". Dereita: "
#: PagePropertyPanel.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_INNER\n"
"string.text"
msgid "Inner: "
-msgstr ""
+msgstr "Interno: "
#: PagePropertyPanel.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_OUTER\n"
"string.text"
msgid ". Outer: "
-msgstr ""
+msgstr ". Externo: "
#: PagePropertyPanel.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_TOP\n"
"string.text"
msgid ". Top: "
-msgstr ""
+msgstr ". Superior: "
#: PagePropertyPanel.src
msgctxt ""
@@ -62,4 +62,4 @@ msgctxt ""
"STR_MARGIN_TOOLTIP_BOT\n"
"string.text"
msgid ". Bottom: "
-msgstr ""
+msgstr ". Inferior: "
diff --git a/source/gl/sw/source/ui/utlui.po b/source/gl/sw/source/ui/utlui.po
index fe68063a50d..46eae9e65a3 100644
--- a/source/gl/sw/source/ui/utlui.po
+++ b/source/gl/sw/source/ui/utlui.po
@@ -4,7 +4,7 @@ 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-10-05 21:18+0000\n"
+"PO-Revision-Date: 2017-02-18 22:31+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1475702308.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487457103.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"STR_TABSTYLE_3D\n"
"string.text"
msgid "3D"
-msgstr ""
+msgstr "3D"
#: poolfmt.src
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK1\n"
"string.text"
msgid "Black 1"
-msgstr ""
+msgstr "Negro 1"
#: poolfmt.src
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"STR_TABSTYLE_BLACK2\n"
"string.text"
msgid "Black 2"
-msgstr ""
+msgstr "Negro 2"
#: poolfmt.src
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"STR_TABSTYLE_BLUE\n"
"string.text"
msgid "Blue"
-msgstr ""
+msgstr "Azul"
#: poolfmt.src
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"STR_TABSTYLE_BROWN\n"
"string.text"
msgid "Brown"
-msgstr ""
+msgstr "Marrón"
#: poolfmt.src
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY\n"
"string.text"
msgid "Currency"
-msgstr ""
+msgstr "Moeda"
#: poolfmt.src
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_3D\n"
"string.text"
msgid "Currency 3D"
-msgstr ""
+msgstr "Moeda 3D"
#: poolfmt.src
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_GRAY\n"
"string.text"
msgid "Currency Gray"
-msgstr ""
+msgstr "Moeda gris"
#: poolfmt.src
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_LAVENDER\n"
"string.text"
msgid "Currency Lavender"
-msgstr ""
+msgstr "Moeda lavanda"
#: poolfmt.src
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"STR_TABSTYLE_CURRENCY_TURQUOISE\n"
"string.text"
msgid "Currency Turquoise"
-msgstr ""
+msgstr "Moeda turquesa"
#: poolfmt.src
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"STR_TABSTYLE_GRAY\n"
"string.text"
msgid "Gray"
-msgstr ""
+msgstr "Gris"
#: poolfmt.src
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"STR_TABSTYLE_GREEN\n"
"string.text"
msgid "Green"
-msgstr ""
+msgstr "Verde"
#: poolfmt.src
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"STR_TABSTYLE_LAVENDER\n"
"string.text"
msgid "Lavender"
-msgstr ""
+msgstr "Lavanda"
#: poolfmt.src
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"STR_TABSTYLE_RED\n"
"string.text"
msgid "Red"
-msgstr ""
+msgstr "Vermello"
#: poolfmt.src
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"STR_TABSTYLE_TURQUOISE\n"
"string.text"
msgid "Turquoise"
-msgstr ""
+msgstr "Turquesa"
#: poolfmt.src
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"STR_TABSTYLE_YELLOW\n"
"string.text"
msgid "Yellow"
-msgstr ""
+msgstr "Amarelo"
#: utlui.src
msgctxt ""
diff --git a/source/gl/sw/source/uibase/ribbar.po b/source/gl/sw/source/uibase/ribbar.po
index 590909b109d..571f27c4c79 100644
--- a/source/gl/sw/source/uibase/ribbar.po
+++ b/source/gl/sw/source/uibase/ribbar.po
@@ -4,7 +4,7 @@ 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-07-04 22:57+0000\n"
+"PO-Revision-Date: 2017-02-18 22:31+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467673021.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487457112.000000\n"
#: inputwin.src
msgctxt ""
@@ -274,7 +274,7 @@ msgctxt ""
"STR_FORMULA_CALC\n"
"string.text"
msgid "Functions"
-msgstr ""
+msgstr "Funcións"
#: inputwin.src
msgctxt ""
@@ -282,7 +282,7 @@ msgctxt ""
"STR_FORMULA_CANCEL\n"
"string.text"
msgid "Cancel"
-msgstr ""
+msgstr "Cancelar"
#: inputwin.src
msgctxt ""
@@ -290,7 +290,7 @@ msgctxt ""
"STR_FORMULA_APPLY\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Aplicar"
#: inputwin.src
msgctxt ""
diff --git a/source/gl/sw/source/uibase/utlui.po b/source/gl/sw/source/uibase/utlui.po
index ab3e5c9fd71..f9186194bb0 100644
--- a/source/gl/sw/source/uibase/utlui.po
+++ b/source/gl/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ 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-12-09 19:04+0000\n"
+"PO-Revision-Date: 2017-02-18 22:32+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1481310247.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487457130.000000\n"
#: attrdesc.src
msgctxt ""
@@ -1816,7 +1816,7 @@ msgctxt ""
"~Zoom\n"
"itemlist.text"
msgid "~Zoom"
-msgstr ""
+msgstr "~Ampliación"
#: unotools.src
msgctxt ""
@@ -1825,7 +1825,7 @@ msgctxt ""
"~Upwards\n"
"itemlist.text"
msgid "~Upwards"
-msgstr ""
+msgstr "~Cara arriba"
#: unotools.src
msgctxt ""
@@ -1834,4 +1834,4 @@ msgctxt ""
"Do~wnwards\n"
"itemlist.text"
msgid "Do~wnwards"
-msgstr ""
+msgstr "~Cara abaixo"
diff --git a/source/gl/sw/uiconfig/swriter/ui.po b/source/gl/sw/uiconfig/swriter/ui.po
index ebf298e5779..0589d2f48f3 100644
--- a/source/gl/sw/uiconfig/swriter/ui.po
+++ b/source/gl/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-12-09 19:05+0000\n"
+"PO-Revision-Date: 2017-02-18 22:55+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: none\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1481310318.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487458520.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numbering"
-msgstr ""
+msgstr "Numeración"
#: bulletsandnumbering.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#: businessdatapage.ui
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: cardmediumpage.ui
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Ligazón"
#: characterproperties.ui
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Ligazón"
#: charurlpage.ui
msgctxt ""
@@ -3155,7 +3155,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: envaddresspage.ui
msgctxt ""
@@ -5175,7 +5175,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Ligazón"
#: framedialog.ui
msgctxt ""
@@ -5436,7 +5436,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Da esquerda á dereita (vertical)"
#: frmaddpage.ui
msgctxt ""
@@ -5445,7 +5445,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Utilizar a configuración do obxecto superior"
#: frmtypepage.ui
msgctxt ""
@@ -5760,7 +5760,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Go to Page"
-msgstr ""
+msgstr "Ir á páxina"
#: gotopagedialog.ui
msgctxt ""
@@ -5769,7 +5769,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "of $1"
-msgstr ""
+msgstr "de $1"
#: gotopagedialog.ui
msgctxt ""
@@ -5778,7 +5778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page:"
-msgstr ""
+msgstr "Páxina:"
#: indentpage.ui
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update entry from selection"
-msgstr ""
+msgstr "Actualizar a entrada a partir da selección"
#: indexentry.ui
msgctxt ""
@@ -6156,7 +6156,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Change page number"
-msgstr ""
+msgstr "Cambiar número de páxina"
#: insertbreak.ui
msgctxt ""
@@ -8775,7 +8775,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Alternar a vista principal"
#: navigatorpanel.ui
msgctxt ""
@@ -8784,7 +8784,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Navigation"
-msgstr ""
+msgstr "Navegación"
#: navigatorpanel.ui
msgctxt ""
@@ -8793,7 +8793,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Back"
-msgstr ""
+msgstr "Atrás"
#: navigatorpanel.ui
msgctxt ""
@@ -8802,7 +8802,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Forward"
-msgstr ""
+msgstr "Adiante"
#: navigatorpanel.ui
msgctxt ""
@@ -8811,7 +8811,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Drag Mode"
-msgstr ""
+msgstr "Modo arrastrar"
#: navigatorpanel.ui
msgctxt ""
@@ -8820,7 +8820,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Chapter"
-msgstr ""
+msgstr "Subir un capítulo"
#: navigatorpanel.ui
msgctxt ""
@@ -8829,7 +8829,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Chapter"
-msgstr ""
+msgstr "Baixar un capítulo"
#: navigatorpanel.ui
msgctxt ""
@@ -8838,7 +8838,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "List Box On/Off"
-msgstr ""
+msgstr "Activar/Desactivar caixa de lista"
#: navigatorpanel.ui
msgctxt ""
@@ -8847,7 +8847,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Content Navigation View"
-msgstr ""
+msgstr "Vista de navegación do contido"
#: navigatorpanel.ui
msgctxt ""
@@ -8856,7 +8856,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "Estabelecer recordatorio"
#: navigatorpanel.ui
msgctxt ""
@@ -8865,7 +8865,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Header"
-msgstr ""
+msgstr "Cabeceira"
#: navigatorpanel.ui
msgctxt ""
@@ -8874,7 +8874,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Footer"
-msgstr ""
+msgstr "Rodapé"
#: navigatorpanel.ui
msgctxt ""
@@ -8883,7 +8883,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Anchor<->Text"
-msgstr ""
+msgstr "Áncora<->Texto"
#: navigatorpanel.ui
msgctxt ""
@@ -8892,7 +8892,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Heading Levels Shown"
-msgstr ""
+msgstr "Niveis de título mostrados"
#: navigatorpanel.ui
msgctxt ""
@@ -8901,7 +8901,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Promote Level"
-msgstr ""
+msgstr "Subir un nivel"
#: navigatorpanel.ui
msgctxt ""
@@ -8910,7 +8910,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Demote Level"
-msgstr ""
+msgstr "Baixar un nivel"
#: navigatorpanel.ui
msgctxt ""
@@ -8919,7 +8919,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document"
-msgstr ""
+msgstr "Documento"
#: navigatorpanel.ui
msgctxt ""
@@ -8928,7 +8928,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Active Window"
-msgstr ""
+msgstr "Xanela activa"
#: navigatorpanel.ui
msgctxt ""
@@ -8937,7 +8937,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Toggle Master View"
-msgstr ""
+msgstr "Alternar a vista principal"
#: navigatorpanel.ui
msgctxt ""
@@ -8946,7 +8946,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: navigatorpanel.ui
msgctxt ""
@@ -8955,7 +8955,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update"
-msgstr ""
+msgstr "Actualizar"
#: navigatorpanel.ui
msgctxt ""
@@ -8964,7 +8964,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: navigatorpanel.ui
msgctxt ""
@@ -8973,7 +8973,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Save Contents as well"
-msgstr ""
+msgstr "Gardar tamén o contido"
#: navigatorpanel.ui
msgctxt ""
@@ -8982,7 +8982,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Up"
-msgstr ""
+msgstr "Subir"
#: navigatorpanel.ui
msgctxt ""
@@ -8991,7 +8991,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Down"
-msgstr ""
+msgstr "Baixar"
#: newuserindexdialog.ui
msgctxt ""
@@ -9027,7 +9027,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Ficheiro"
#: notebookbar.ui
msgctxt ""
@@ -9036,7 +9036,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Tipo de letra"
#: notebookbar.ui
msgctxt ""
@@ -9045,7 +9045,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Tipo de letra"
#: notebookbar.ui
msgctxt ""
@@ -9054,7 +9054,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Outline"
-msgstr ""
+msgstr "Esquema"
#: notebookbar.ui
msgctxt ""
@@ -9072,7 +9072,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Aliñamento horizontal"
#: notebookbar.ui
msgctxt ""
@@ -9081,7 +9081,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Alignment"
-msgstr ""
+msgstr "Aliñamento"
#: notebookbar.ui
msgctxt ""
@@ -9090,7 +9090,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Vertical Alignment"
-msgstr ""
+msgstr "Aliñamento vertical"
#: notebookbar.ui
msgctxt ""
@@ -9108,7 +9108,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Spacing"
-msgstr ""
+msgstr "Espazamento"
#: notebookbar.ui
msgctxt ""
@@ -9126,7 +9126,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Aumentar sangrado"
#: notebookbar.ui
msgctxt ""
@@ -9135,7 +9135,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Reducir sangrado"
#: notebookbar.ui
msgctxt ""
@@ -9153,7 +9153,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#: notebookbar.ui
msgctxt ""
@@ -9162,7 +9162,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Atopar"
#: notebookbar.ui
msgctxt ""
@@ -9171,7 +9171,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Find"
-msgstr ""
+msgstr "Atopar"
#: notebookbar.ui
msgctxt ""
@@ -9180,7 +9180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Home"
-msgstr ""
+msgstr "Inicio"
#: notebookbar.ui
msgctxt ""
@@ -9189,7 +9189,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Break"
-msgstr ""
+msgstr "Quebra"
#: notebookbar.ui
msgctxt ""
@@ -9198,7 +9198,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Gallery"
-msgstr ""
+msgstr "Galería"
#: notebookbar.ui
msgctxt ""
@@ -9207,7 +9207,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Open Clip Art and Media Gallery"
-msgstr ""
+msgstr "Galería de imaxes predeseñadas e multimedia"
#: notebookbar.ui
msgctxt ""
@@ -9216,7 +9216,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Symbol"
-msgstr ""
+msgstr "Símbolo"
#: notebookbar.ui
msgctxt ""
@@ -9225,7 +9225,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basic"
-msgstr ""
+msgstr "Básico"
#: notebookbar.ui
msgctxt ""
@@ -9234,7 +9234,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Inserir son ou vídeo"
#: notebookbar.ui
msgctxt ""
@@ -9243,7 +9243,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Formas"
#: notebookbar.ui
msgctxt ""
@@ -9252,7 +9252,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Ligazóns"
#: notebookbar.ui
msgctxt ""
@@ -9261,7 +9261,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: notebookbar.ui
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Fields"
-msgstr ""
+msgstr "Campos"
#: notebookbar.ui
msgctxt ""
@@ -9279,7 +9279,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: notebookbar.ui
msgctxt ""
@@ -9288,7 +9288,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sangría"
#: notebookbar.ui
msgctxt ""
@@ -9297,7 +9297,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sangría"
#: notebookbar.ui
msgctxt ""
@@ -9306,7 +9306,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Setup"
-msgstr ""
+msgstr "Configurar"
#: notebookbar.ui
msgctxt ""
@@ -9315,7 +9315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page layout"
-msgstr ""
+msgstr "Deseño da páxina"
#: notebookbar.ui
msgctxt ""
@@ -9324,7 +9324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "References"
-msgstr ""
+msgstr "Referencias"
#: notebookbar.ui
msgctxt ""
@@ -9333,7 +9333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Review"
-msgstr ""
+msgstr "Revisar"
#: notebookbar.ui
msgctxt ""
@@ -9342,7 +9342,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Page View"
-msgstr ""
+msgstr "Vista da páxina"
#: notebookbar.ui
msgctxt ""
@@ -9351,7 +9351,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Document Area Elements"
-msgstr ""
+msgstr "Elementos da área do documento"
#: notebookbar.ui
msgctxt ""
@@ -9360,7 +9360,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Zoom"
-msgstr ""
+msgstr "Ampliación"
#: notebookbar.ui
msgctxt ""
@@ -9369,7 +9369,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View"
-msgstr ""
+msgstr "Ver"
#: notebookbar.ui
msgctxt ""
@@ -9396,7 +9396,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Táboa"
#: notebookbar.ui
msgctxt ""
@@ -9405,7 +9405,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Básico"
#: notebookbar.ui
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Propiedades"
#: notebookbar.ui
msgctxt ""
@@ -9423,7 +9423,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Basics"
-msgstr ""
+msgstr "Básico"
#: notebookbar.ui
msgctxt ""
@@ -9432,7 +9432,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Crop"
-msgstr ""
+msgstr "Recortar"
#: notebookbar.ui
msgctxt ""
@@ -9441,7 +9441,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#: notebookbar_groups.ui
msgctxt ""
@@ -9450,7 +9450,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Predeterminado"
#: notebookbar_groups.ui
msgctxt ""
@@ -9459,7 +9459,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Grayscale"
-msgstr ""
+msgstr "Escala de grises"
#: notebookbar_groups.ui
msgctxt ""
@@ -9468,7 +9468,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Black and White"
-msgstr ""
+msgstr "Branco e negro"
#: notebookbar_groups.ui
msgctxt ""
@@ -9477,7 +9477,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Watermark"
-msgstr ""
+msgstr "Marca de auga"
#: notebookbar_groups.ui
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness & Contrast"
-msgstr ""
+msgstr "-20% de brillo e contraste"
#: notebookbar_groups.ui
msgctxt ""
@@ -9495,7 +9495,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Brightness"
-msgstr ""
+msgstr "-20% de brillo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9504,7 +9504,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-20% Contrast"
-msgstr ""
+msgstr "-20% de contraste"
#: notebookbar_groups.ui
msgctxt ""
@@ -9513,7 +9513,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "0% Brightness & Contrast"
-msgstr ""
+msgstr "0% de brillo e contraste"
#: notebookbar_groups.ui
msgctxt ""
@@ -9522,7 +9522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness"
-msgstr ""
+msgstr "+20% de brillo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9531,7 +9531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Contrast"
-msgstr ""
+msgstr "+20% de contraste"
#: notebookbar_groups.ui
msgctxt ""
@@ -9540,7 +9540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+20% Brightness & Contrast"
-msgstr ""
+msgstr "+20% de brillo e contraste"
#: notebookbar_groups.ui
msgctxt ""
@@ -9549,7 +9549,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Red"
-msgstr ""
+msgstr "Colorear en vermello"
#: notebookbar_groups.ui
msgctxt ""
@@ -9558,7 +9558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Blue"
-msgstr ""
+msgstr "Colorear en azul"
#: notebookbar_groups.ui
msgctxt ""
@@ -9567,7 +9567,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Green"
-msgstr ""
+msgstr "Colorear en verde"
#: notebookbar_groups.ui
msgctxt ""
@@ -9576,7 +9576,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Colorize Orange"
-msgstr ""
+msgstr "Colorear en laranxa"
#: notebookbar_groups.ui
msgctxt ""
@@ -9585,7 +9585,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyperlink"
-msgstr ""
+msgstr "Hiperligazón"
#: notebookbar_groups.ui
msgctxt ""
@@ -9594,7 +9594,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Footnote"
-msgstr ""
+msgstr "Nota de rodapé"
#: notebookbar_groups.ui
msgctxt ""
@@ -9603,7 +9603,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Endnote"
-msgstr ""
+msgstr "Nota final"
#: notebookbar_groups.ui
msgctxt ""
@@ -9612,7 +9612,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bookmark"
-msgstr ""
+msgstr "Marcador"
#: notebookbar_groups.ui
msgctxt ""
@@ -9621,7 +9621,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cross-Reference"
-msgstr ""
+msgstr "Referencia cruzada"
#: notebookbar_groups.ui
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Paragraph"
-msgstr ""
+msgstr "Parágrafo predeterminado"
#: notebookbar_groups.ui
msgctxt ""
@@ -9639,7 +9639,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Título"
#: notebookbar_groups.ui
msgctxt ""
@@ -9648,7 +9648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr ""
+msgstr "Subtítulo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9657,7 +9657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default Character"
-msgstr ""
+msgstr "Carácter predeterminado"
#: notebookbar_groups.ui
msgctxt ""
@@ -9666,7 +9666,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Emphasis"
-msgstr ""
+msgstr "Énfase"
#: notebookbar_groups.ui
msgctxt ""
@@ -9675,7 +9675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Strong Emphasis"
-msgstr ""
+msgstr "Máis énfase"
#: notebookbar_groups.ui
msgctxt ""
@@ -9684,7 +9684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ningún"
#: notebookbar_groups.ui
msgctxt ""
@@ -9693,7 +9693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default"
-msgstr ""
+msgstr "Predeterminado"
#: notebookbar_groups.ui
msgctxt ""
@@ -9702,7 +9702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 1"
-msgstr ""
+msgstr "Estilo 1"
#: notebookbar_groups.ui
msgctxt ""
@@ -9711,7 +9711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 2"
-msgstr ""
+msgstr "Estilo 2"
#: notebookbar_groups.ui
msgctxt ""
@@ -9720,7 +9720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 3"
-msgstr ""
+msgstr "Estilo 3"
#: notebookbar_groups.ui
msgctxt ""
@@ -9729,7 +9729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style 4"
-msgstr ""
+msgstr "Estilo 4"
#: notebookbar_groups.ui
msgctxt ""
@@ -9738,7 +9738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Inserir filas por enriba"
#: notebookbar_groups.ui
msgctxt ""
@@ -9747,7 +9747,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Inserir filas por embaixo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9756,7 +9756,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Rows"
-msgstr ""
+msgstr "Eliminar filas"
#: notebookbar_groups.ui
msgctxt ""
@@ -9765,7 +9765,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Rows"
-msgstr ""
+msgstr "Seleccionar filas"
#: notebookbar_groups.ui
msgctxt ""
@@ -9774,7 +9774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Height..."
-msgstr ""
+msgstr "Altura de fila..."
#: notebookbar_groups.ui
msgctxt ""
@@ -9783,7 +9783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal Row Height"
-msgstr ""
+msgstr "Altura ideal de fila"
#: notebookbar_groups.ui
msgctxt ""
@@ -9792,7 +9792,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Distribute Rows Evenly"
-msgstr ""
+msgstr "Distribuír columnas uniformemente"
#: notebookbar_groups.ui
msgctxt ""
@@ -9801,7 +9801,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File"
-msgstr ""
+msgstr "Ficheiro"
#: notebookbar_groups.ui
msgctxt ""
@@ -9810,7 +9810,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clipboard"
-msgstr ""
+msgstr "Portapapeis"
#: notebookbar_groups.ui
msgctxt ""
@@ -9819,7 +9819,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9828,7 +9828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: notebookbar_groups.ui
msgctxt ""
@@ -9837,7 +9837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Links"
-msgstr ""
+msgstr "Ligazóns"
#: notebookbar_groups.ui
msgctxt ""
@@ -9846,7 +9846,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shapes"
-msgstr ""
+msgstr "Formas"
#: notebookbar_groups.ui
msgctxt ""
@@ -9855,7 +9855,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: notebookbar_groups.ui
msgctxt ""
@@ -9864,7 +9864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9873,7 +9873,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rows"
-msgstr ""
+msgstr "Filas"
#: notebookbar_groups.ui
msgctxt ""
@@ -9882,7 +9882,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns"
-msgstr ""
+msgstr "Columnas"
#: notebookbar_groups.ui
msgctxt ""
@@ -9891,7 +9891,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table"
-msgstr ""
+msgstr "Táboa"
#: notebookbar_groups.ui
msgctxt ""
@@ -9900,7 +9900,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Estilo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9909,7 +9909,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Restaurar"
#: notebookbar_groups.ui
msgctxt ""
@@ -9918,7 +9918,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wrap"
-msgstr ""
+msgstr "Axustar"
#: notebookbar_groups.ui
msgctxt ""
@@ -9927,7 +9927,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lock"
-msgstr ""
+msgstr "Bloquear"
#: notebookbar_groups.ui
msgctxt ""
@@ -9936,7 +9936,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#: notebookbar_groups.ui
msgctxt ""
@@ -9945,7 +9945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ningún"
#: notebookbar_groups.ui
msgctxt ""
@@ -9954,7 +9954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Ideal"
#: notebookbar_groups.ui
msgctxt ""
@@ -9963,7 +9963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Paralelo"
#: notebookbar_groups.ui
msgctxt ""
@@ -9972,7 +9972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Antes"
#: notebookbar_groups.ui
msgctxt ""
@@ -9981,7 +9981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Despois"
#: notebookbar_groups.ui
msgctxt ""
@@ -9990,7 +9990,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "A través"
#: notebookbar_groups.ui
msgctxt ""
@@ -9999,7 +9999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Contorno"
#: notebookbar_groups.ui
msgctxt ""
@@ -10008,7 +10008,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Editar contorno"
#: notebookbar_single.ui
msgctxt ""
@@ -10017,7 +10017,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Horizontal Alignment"
-msgstr ""
+msgstr "Aliñamento horizontal"
#: notebookbar_single.ui
msgctxt ""
@@ -10026,7 +10026,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sangría"
#: notebookbar_single.ui
msgctxt ""
@@ -10035,7 +10035,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Indent"
-msgstr ""
+msgstr "Sangría"
#: numberingnamedialog.ui
msgctxt ""
@@ -10386,7 +10386,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Ligazón"
#: objectdialog.ui
msgctxt ""
@@ -11344,7 +11344,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Insertions"
-msgstr ""
+msgstr "Cor das insercións"
#: optredlinepage.ui
msgctxt ""
@@ -11389,7 +11389,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Deletions"
-msgstr ""
+msgstr "Cor das eliminacións"
#: optredlinepage.ui
msgctxt ""
@@ -11434,7 +11434,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Changed Attributes"
-msgstr ""
+msgstr "Cor dos atributos cambiados"
#: optredlinepage.ui
msgctxt ""
@@ -11461,7 +11461,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color of Mark"
-msgstr ""
+msgstr "Cor das marcas"
#: optredlinepage.ui
msgctxt ""
@@ -12050,7 +12050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Parada de tabulación en:"
#: outlinepositionpage.ui
msgctxt ""
@@ -12140,7 +12140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 columna"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12149,7 +12149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 columnas"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12158,7 +12158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 columnas"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12167,7 +12167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Esquerda"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12176,7 +12176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Dereita"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12185,7 +12185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 columna"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12194,7 +12194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 columnas"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12203,7 +12203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 columnas"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12212,7 +12212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Left"
-msgstr ""
+msgstr "Esquerda"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12221,7 +12221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right"
-msgstr ""
+msgstr "Dereita"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options"
-msgstr ""
+msgstr "_Mais opcións"
#: pagecolumncontrol.ui
msgctxt ""
@@ -12239,7 +12239,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "More Options"
-msgstr ""
+msgstr "Máis opcións"
#: pagefooterpanel.ui
msgctxt ""
@@ -12248,7 +12248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Marxes:"
#: pagefooterpanel.ui
msgctxt ""
@@ -12257,7 +12257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Personalizado"
#: pagefooterpanel.ui
msgctxt ""
@@ -12266,7 +12266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing:"
-msgstr ""
+msgstr "Espazamento:"
#: pagefooterpanel.ui
msgctxt ""
@@ -12275,7 +12275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "O mesmo contido:"
#: pageformatpanel.ui
msgctxt ""
@@ -12284,7 +12284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Size:"
-msgstr ""
+msgstr "Tamaño:"
#: pageformatpanel.ui
msgctxt ""
@@ -12293,7 +12293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Width:"
-msgstr ""
+msgstr "Largura:"
#: pageformatpanel.ui
msgctxt ""
@@ -12302,7 +12302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Height:"
-msgstr ""
+msgstr "Altura:"
#: pageformatpanel.ui
msgctxt ""
@@ -12311,7 +12311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation:"
-msgstr ""
+msgstr "Orientación:"
#: pageformatpanel.ui
msgctxt ""
@@ -12320,7 +12320,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Paper Width"
-msgstr ""
+msgstr "Largura do papel"
#: pageformatpanel.ui
msgctxt ""
@@ -12329,7 +12329,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Paper Height"
-msgstr ""
+msgstr "Altura do papel"
#: pageformatpanel.ui
msgctxt ""
@@ -12338,7 +12338,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Portrait"
-msgstr ""
+msgstr "Vertical"
#: pageformatpanel.ui
msgctxt ""
@@ -12347,7 +12347,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Landscape"
-msgstr ""
+msgstr "Apaisado"
#: pageformatpanel.ui
msgctxt ""
@@ -12356,7 +12356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Marxes:"
#: pageformatpanel.ui
msgctxt ""
@@ -12365,7 +12365,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "None"
-msgstr ""
+msgstr "Ningunha"
#: pageformatpanel.ui
msgctxt ""
@@ -12374,7 +12374,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Narrow"
-msgstr ""
+msgstr "Estreita"
#: pageformatpanel.ui
msgctxt ""
@@ -12383,7 +12383,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Moderate"
-msgstr ""
+msgstr "Moderada"
#: pageformatpanel.ui
msgctxt ""
@@ -12392,7 +12392,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Normal 0.75\""
-msgstr ""
+msgstr "Normal 1,90cm"
#: pageformatpanel.ui
msgctxt ""
@@ -12401,7 +12401,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Normal 1\""
-msgstr ""
+msgstr "Normal 2,54cm"
#: pageformatpanel.ui
msgctxt ""
@@ -12410,7 +12410,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Normal 1.25\""
-msgstr ""
+msgstr "Normal 3,175cm"
#: pageformatpanel.ui
msgctxt ""
@@ -12419,7 +12419,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Wide"
-msgstr ""
+msgstr "Amplo"
#: pageformatpanel.ui
msgctxt ""
@@ -12428,7 +12428,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Espellada"
#: pageformatpanel.ui
msgctxt ""
@@ -12437,7 +12437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Personalizada"
#: pageheaderpanel.ui
msgctxt ""
@@ -12446,7 +12446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Margins:"
-msgstr ""
+msgstr "Marxes:"
#: pageheaderpanel.ui
msgctxt ""
@@ -12455,7 +12455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Personalizado"
#: pageheaderpanel.ui
msgctxt ""
@@ -12464,7 +12464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing:"
-msgstr ""
+msgstr "Espazamento:"
#: pageheaderpanel.ui
msgctxt ""
@@ -12473,7 +12473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same Content:"
-msgstr ""
+msgstr "O mesmo contido:"
#: pagemargincontrol.ui
msgctxt ""
@@ -12482,7 +12482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Narrow"
-msgstr ""
+msgstr "Estreita"
#: pagemargincontrol.ui
msgctxt ""
@@ -12491,7 +12491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Normal"
#: pagemargincontrol.ui
msgctxt ""
@@ -12500,7 +12500,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wide"
-msgstr ""
+msgstr "Ampla"
#: pagemargincontrol.ui
msgctxt ""
@@ -12509,7 +12509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Espellada"
#: pagemargincontrol.ui
msgctxt ""
@@ -12518,7 +12518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last Custom Value"
-msgstr ""
+msgstr "Último valor personalizado"
#: pagemargincontrol.ui
msgctxt ""
@@ -12527,7 +12527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Narrow"
-msgstr ""
+msgstr "Estreita"
#: pagemargincontrol.ui
msgctxt ""
@@ -12536,7 +12536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normal"
-msgstr ""
+msgstr "Normal"
#: pagemargincontrol.ui
msgctxt ""
@@ -12545,7 +12545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Wide"
-msgstr ""
+msgstr "Ampla"
#: pagemargincontrol.ui
msgctxt ""
@@ -12554,7 +12554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Espellada"
#: pagemargincontrol.ui
msgctxt ""
@@ -12563,7 +12563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last Custom Value"
-msgstr ""
+msgstr "Último valor personalizado"
#: pagemargincontrol.ui
msgctxt ""
@@ -12572,7 +12572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Top"
-msgstr ""
+msgstr "_Arriba"
#: pagemargincontrol.ui
msgctxt ""
@@ -12581,7 +12581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Bottom"
-msgstr ""
+msgstr "A_baixo"
#: pagemargincontrol.ui
msgctxt ""
@@ -12590,7 +12590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Left"
-msgstr ""
+msgstr "_Esquerda"
#: pagemargincontrol.ui
msgctxt ""
@@ -12599,7 +12599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_nner"
-msgstr ""
+msgstr "I_nterior"
#: pagemargincontrol.ui
msgctxt ""
@@ -12608,7 +12608,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Right"
-msgstr ""
+msgstr "_Dereita"
#: pagemargincontrol.ui
msgctxt ""
@@ -12617,7 +12617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "O_uter"
-msgstr ""
+msgstr "E_xterior"
#: pagemargincontrol.ui
msgctxt ""
@@ -12626,7 +12626,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12635,7 +12635,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12644,7 +12644,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12653,7 +12653,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0,00"
-msgstr ""
+msgstr "0,00"
#: pagemargincontrol.ui
msgctxt ""
@@ -12662,7 +12662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Personalizado"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12671,7 +12671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Portrait"
-msgstr ""
+msgstr "Vertical"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12680,7 +12680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Landscape"
-msgstr ""
+msgstr "Apaisado"
#: pageorientationcontrol.ui
msgctxt ""
@@ -12689,7 +12689,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Single"
-msgstr ""
+msgstr "Único"
#: pagesizecontrol.ui
msgctxt ""
@@ -12698,7 +12698,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_More Options"
-msgstr ""
+msgstr "_Máis opcións"
#: pagesizecontrol.ui
msgctxt ""
@@ -12707,7 +12707,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "More Options"
-msgstr ""
+msgstr "Máis opcións"
#: pagestylespanel.ui
msgctxt ""
@@ -12716,7 +12716,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number:"
-msgstr ""
+msgstr "Número:"
#: pagestylespanel.ui
msgctxt ""
@@ -12725,7 +12725,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background:"
-msgstr ""
+msgstr "Fondo:"
#: pagestylespanel.ui
msgctxt ""
@@ -12734,7 +12734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Layout:"
-msgstr ""
+msgstr "Deseño:"
#: pagestylespanel.ui
msgctxt ""
@@ -12743,7 +12743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Columns:"
-msgstr ""
+msgstr "Columnas:"
#: pagestylespanel.ui
msgctxt ""
@@ -12752,7 +12752,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "1 Column"
-msgstr ""
+msgstr "1 columna"
#: pagestylespanel.ui
msgctxt ""
@@ -12761,7 +12761,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "2 Columns"
-msgstr ""
+msgstr "2 columnas"
#: pagestylespanel.ui
msgctxt ""
@@ -12770,7 +12770,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "3 Columns"
-msgstr ""
+msgstr "3 columnas"
#: pagestylespanel.ui
msgctxt ""
@@ -12779,7 +12779,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Left"
-msgstr ""
+msgstr "Esquerda"
#: pagestylespanel.ui
msgctxt ""
@@ -12788,7 +12788,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Right"
-msgstr ""
+msgstr "Dereita"
#: pagestylespanel.ui
msgctxt ""
@@ -12797,7 +12797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Personalizado"
#: pagestylespanel.ui
msgctxt ""
@@ -12806,7 +12806,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Right and left"
-msgstr ""
+msgstr "Dereita e esquerda"
#: pagestylespanel.ui
msgctxt ""
@@ -12815,7 +12815,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Mirrored"
-msgstr ""
+msgstr "Espellada"
#: pagestylespanel.ui
msgctxt ""
@@ -12824,7 +12824,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Only right"
-msgstr ""
+msgstr "Só á dereita"
#: pagestylespanel.ui
msgctxt ""
@@ -12833,7 +12833,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Only left"
-msgstr ""
+msgstr "Só á esquerda"
#: paradialog.ui
msgctxt ""
@@ -12977,7 +12977,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link"
-msgstr ""
+msgstr "Ligazón"
#: picturedialog.ui
msgctxt ""
@@ -14507,7 +14507,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "None"
-msgstr ""
+msgstr "Ningún"
#: sidebarwrap.ui
msgctxt ""
@@ -14525,7 +14525,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Paralelo"
#: sidebarwrap.ui
msgctxt ""
@@ -14543,7 +14543,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Optimal"
-msgstr ""
+msgstr "Ideal"
#: sidebarwrap.ui
msgctxt ""
@@ -14561,7 +14561,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Before"
-msgstr ""
+msgstr "Antes"
#: sidebarwrap.ui
msgctxt ""
@@ -14579,7 +14579,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "After"
-msgstr ""
+msgstr "Despois"
#: sidebarwrap.ui
msgctxt ""
@@ -14597,7 +14597,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Through"
-msgstr ""
+msgstr "A través"
#: sidebarwrap.ui
msgctxt ""
@@ -14786,7 +14786,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Tipo de chave"
#: sortdialog.ui
msgctxt ""
@@ -14795,7 +14795,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Tipo de chave"
#: sortdialog.ui
msgctxt ""
@@ -14804,7 +14804,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Key type"
-msgstr ""
+msgstr "Tipo de chave"
#: sortdialog.ui
msgctxt ""
@@ -15128,7 +15128,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 2 Width"
-msgstr ""
+msgstr "Largura da columna 2"
#: tablecolumnpage.ui
msgctxt ""
@@ -15137,7 +15137,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 3 Width"
-msgstr ""
+msgstr "Largura da columna 3"
#: tablecolumnpage.ui
msgctxt ""
@@ -15146,7 +15146,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 4 Width"
-msgstr ""
+msgstr "Largura da columna 4"
#: tablecolumnpage.ui
msgctxt ""
@@ -15155,7 +15155,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 5 Width"
-msgstr ""
+msgstr "Largura da columna 5"
#: tablecolumnpage.ui
msgctxt ""
@@ -15164,7 +15164,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 6 Width"
-msgstr ""
+msgstr "Largura da columna 6"
#: tablecolumnpage.ui
msgctxt ""
@@ -15173,7 +15173,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Column 1 Width"
-msgstr ""
+msgstr "Largura da columna 1"
#: tablecolumnpage.ui
msgctxt ""
@@ -15326,7 +15326,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "With Page Style"
-msgstr ""
+msgstr "Con estilo de páxina"
#: tabletextflowpage.ui
msgctxt ""
@@ -15623,7 +15623,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Customize"
-msgstr ""
+msgstr "Personalizar"
#: templatedialog2.ui
msgctxt ""
@@ -16397,7 +16397,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Previsualización"
#: tocdialog.ui
msgctxt ""
@@ -16667,7 +16667,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "L_ink"
-msgstr ""
+msgstr "L_igazón"
#: tocentriespage.ui
msgctxt ""
@@ -16784,7 +16784,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Ascending"
-msgstr ""
+msgstr "Ascendente"
#: tocentriespage.ui
msgctxt ""
@@ -16793,7 +16793,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Descending"
-msgstr ""
+msgstr "Descendente"
#: tocentriespage.ui
msgctxt ""
diff --git a/source/gl/swext/mediawiki/help.po b/source/gl/swext/mediawiki/help.po
index f91be6d7e44..0cca0efa073 100644
--- a/source/gl/swext/mediawiki/help.po
+++ b/source/gl/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ 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-02-19 20:37+0000\n"
+"PO-Revision-Date: 2017-02-19 22:17+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1455914237.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487542664.000000\n"
#: help.tree
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id9647511\n"
"help.text"
msgid "<ahelp hid=\".\">By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Usando Wiki Publisher vostede pode subir o seu documento de texto de Writer a un servidor MediaWiki. Despois de subilo, todos os usuarios do Wiki poderán ler o contido do seu documento no Wiki.</ahelp>"
#: wiki.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id7387615\n"
"help.text"
msgid "A wiki account on a supported <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> server"
-msgstr ""
+msgstr "Unha conta de wiki nun servidor <link href=\"http://www.mediawiki.org/wiki/MediaWiki\">MediaWiki</link> admitido"
#: wiki.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id4277169\n"
"help.text"
msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Advanced</item>. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME."
-msgstr ""
+msgstr "Antes de instalar o Wiki Publisher, comprobe que %PRODUCTNAME utiliza un Java Runtime Environment (JRE). Para comprobar o estado do JRE, escolla <item type=\"menuitem\">Ferramentas - Opcións - %PRODUCTNAME - Avanzadas</item>. Asegúrese de que a opción «Usar un entorno de execución de Java (JRE)» está activa e que aparece seleccionado o cartafol de execución do Java na gran caixa inferior. Se o JRE está inactivo, active un JRE 1.4 ou superior e reinicie %PRODUCTNAME."
#: wiki.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_id6962187\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog, enter the account information for the wiki."
-msgstr ""
+msgstr "Na caixa de diálogo <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki </link>, insira os datos conta da wiki."
#: wiki.xhp
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"par_id5328836\n"
"help.text"
msgid "In the URL text box, enter the address of a wiki that you want to connect to."
-msgstr ""
+msgstr "Na caixa de texto do URL, introduza o enderezo do wiki ao que quere conectarse."
#: wiki.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the Username box, enter your user ID for your wiki account."
-msgstr ""
+msgstr "Na caixa de Nome de usuario, introduza o seu identificador de usuario para a súa conta do wiki."
#: wiki.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id9297158\n"
"help.text"
msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty."
-msgstr ""
+msgstr "Se o xiki permite a escritura a usuarios anónimos, pode deixar os campos Nome de usuario e Contrasinal baleiros."
#: wiki.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id8869594\n"
"help.text"
msgid "In the Password box, enter the password for your wiki account, then click OK."
-msgstr ""
+msgstr "Na caixa Contrasinal, introduza o contrasinal para a súa conta do wiki e despois prema Aceptar."
#: wiki.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"par_id292062\n"
"help.text"
msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item> to enable the master password. “Save password” is unavailable when the master password is not enabled."
-msgstr ""
+msgstr "Opcionalmente, active «Gardar o contrasinal» para gardar o contrasinal entre sesións. Utilízase un contrasinal mestre para ter acceso a todos os contrasinais gardados. Escolla <item type=\"menuitem\">Ferramentas - Opcións - %PRODUCTNAME - Seguranza</item> para activar o contrasinal mestre. «Gardar contrasinal» non é unha opción dispoñíbel cando o contrasinal mestre non está activado."
#: wiki.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"par_id944853\n"
"help.text"
msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">list of supported formats</link>."
-msgstr ""
+msgstr "Escriba o contido da páxina da wiki. Pode usar formatado, como formatos de texto, títulos, notas de rodapé e máis. Consulte a <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">lista de formatos admitidos</link>."
#: wiki.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id2564165\n"
"help.text"
msgid "<emph>MediaWiki server</emph>: Select the wiki."
-msgstr ""
+msgstr "<emph>Servidor MediaWiki </emph>: Seleccione o wiki."
#: wiki.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id5566576\n"
"help.text"
msgid "<emph>Title</emph>: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki."
-msgstr ""
+msgstr "<emph>Título</emph>: Escriba o título da súa páxina. Escriba o título dunha páxina existente para sobrescribila co contido actual do seu documento. Escriba un novo título para crear unha nova páxina no wiki."
#: wiki.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id452284\n"
"help.text"
msgid "<emph>Show in web browser</emph>: Check this box to open your system web browser and show the uploaded wiki page."
-msgstr ""
+msgstr "<emph>Amosar no navegador web</emph>: Prema nesta caixa de selección para abrir o seu navegador e amosar a páxina enviada ao wiki."
#: wiki.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id8346812\n"
"help.text"
msgid "Click <emph>Send</emph>."
-msgstr ""
+msgstr "Prema en <emph>Enviar</emph>."
#: wikiaccount.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id656758\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable to store your password between sessions. The master password must be enabled; see <item type=\"menuitem\">Tools - Options - %PRODUCTNAME - Security</item>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Active para gardar o seu contrasinal entre sesións. O contrasinal mestre debe estar activado; vexa tamén <item type=\"menuitem\">Ferramentas - Opcións - %PRODUCTNAME - Seguranza</item>.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "Escriba o enderezo do servidor wiki nun formato tipo http://wiki.documentfoundation.org ou copie o enderezo URL do navegador web."
#: wikiaccount.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr ""
+msgstr "Se o wiki permite acceso anónimo, pode deixar as caixas de texto da conta baleiras. Se non, introduza o seu nome de usuario e contrasinal."
#: wikiaccount.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_id8654133\n"
"help.text"
msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server."
-msgstr ""
+msgstr "A seguinte lista ofrece unha vista xeral dos formatos de texto que Wiki Publisher pode enviar ao servidor wiki."
#: wikiformats.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id5630664\n"
"help.text"
msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other."
-msgstr ""
+msgstr "O formato OpenDocument usado por Writer e o formato WikiMedia son bastante distintos. Só un subconxunto de todas as características pode ser transformado dun formato para o outro."
#: wikiformats.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr ""
+msgstr "Aplique un estilo de parágrafo Título aos títulos do seu documento de Writer. O wiki amosará os estilos de Título do mesmo nivel do esquema, formatados como defina o motor do wiki."
#: wikiformats.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr ""
+msgstr "As hiperligazóns nativas de OpenDocument son transformadas en ligazóns «externas» ao wiki. Polo tanto, a creación de ligazóns no formato OpenDocument só debe ser usada para crear ligazóns que apunten a outros sitios web fóra do wiki. Para crear ligazóns wiki que apunten a outros asuntos dentro do mesmo dominio do wiki, use as ligazóns wiki."
#: wikiformats.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr ""
+msgstr "As listas poden ser exportadas con fiabilidade se toda a lista usa un estilo consistente. Use a icona Viñetas e numeración para xerar unha lista en Writer. Se necesita unha lista sen viñetas ou numeracións, use <emph>Formato - Viñetas e numeración</emph> para definir e aplicar o estilo de lista respectivo."
#: wikiformats.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id376598\n"
"help.text"
msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text."
-msgstr ""
+msgstr "O aliñamento explícito do texto non debe ser usado nos artigos de wiki. Con todo, o aliñamento de texto á esquerda, ao centro e á dereita si se admiten."
#: wikiformats.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr ""
+msgstr "Un estilo de parágrafo cunha largura de tipo de letra fixa transformarase nun texto preformatado. O texto preformatado amosarase no wiki cun bordo ao redor do texto."
#: wikiformats.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id6397595\n"
"help.text"
msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style."
-msgstr ""
+msgstr "Os estilos de letra modifican a aparencia de partes dun parágrafo. A transformación admiten grosa, cursiva, cursiva grosa, subíndice e superíndice. Todos os tipos de letra con tipo fixo transfórmanse como estilo de máquina de escribir do wiki."
#: wikiformats.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id5238196\n"
"help.text"
msgid "Note: The transformation uses the new style of footnotes with <ref> and <references> tags that requires the Cite.php extension to be installed into MediaWiki. If those tags are shown as plain text in the transformation result, ask the wiki administrator to install this extension."
-msgstr ""
+msgstr "Nota: A transformación usa o novo estilo de notas a rodapé coas etiquetas <ref> e <references> que requiren a instalación da extensión Cite.php no servidor MediaWiki. Se esas etiquetas aparecen como texto simple como resultado da transformación, pídalle ao administrador do wiki que instale a extensión."
#: wikiformats.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr ""
+msgstr "As imaxes non se poden exportar á un simple ficheiro de texto wiki. No entanto, se a imaxe xa está subida ao dominio wiki de destino (p. ex. WikiMedia Commons), entón a transformación produce unha etiqueta de imaxe correcta que inclúe a imaxe. As lendas das imaxes tamén se admiten."
#: wikiformats.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr ""
+msgstr "As táboas simples admítense ben. As cabeceiras das táboas correspóndense coas cabeceiras das táboas con estilo wiki. No entanto, os formatados personalizados dos bordos, tamaños de columnas e cores de fondo ignóranse."
#: wikiformats.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr ""
+msgstr "Malia os estilos personalizados para bordos de táboa ou fondo, unha táboa expórtase sempre como “<emph>prettytable</emph>”, que se procesa no motor do wiki con bordos simples e cabeceira en grosa."
#: wikiformats.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"hd_id6255073\n"
"help.text"
msgid "Character set and special characters"
-msgstr ""
+msgstr "Conxunto de caracteres e caracteres especiais"
#: wikiformats.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr ""
+msgstr "O conxunto de caracteres do resultado da transformación está fixado como UTF-8. Dependendo do seu sistema, este pode non ser o conxunto predeterminado. Isto pode causar que os \"caracteres especiais\" non se vexan ben coa configuración predeterminada. No entanto, pode cambiar o seu editor para que use UTF-8 e arranxar isto. Se o seu editor non admite cambio na codificación, pode presentar o resultado da transformación no navegador Firefox e cambiar a codificación a UTF-8 alí. A partir de entón pode copiar e pegar o resultado da transformación para o programa que desexe."
#: wikisend.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id1743827\n"
"help.text"
msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload."
-msgstr ""
+msgstr "Na caixa de diálogo Enviar a MediaWiki, especifique a configuración para o seu envío actual."
#: wikisend.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduza o título da entrada do wiki. Esta é a cabeceira principal da súa entrada do wiki. Para unha entrada nova, o título debe ser único neste wiki. Se introduce un título existente, a súa entrada ha substituír a existente no wiki.</ahelp>"
#: wikisend.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr ""
+msgstr "<emph>Amosar no navegador web</emph>: <ahelp hid=\".\">Prema nesta caixa de selección para abrir o seu navegador e amosar a páxina enviada ao wiki.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id1188390\n"
"help.text"
msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to <item type=\"menuitem\">Tools - Options - Internet - MediaWiki</item>."
-msgstr ""
+msgstr "Pode engadir, editar e retirar servidores MediaWiki. Abra o diálogo de opcións desde <item type=\"menuitem\">Ferramentas - Opcións - Internet - MediaWiki</item>."
#: wikisettings.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id300607\n"
"help.text"
msgid "<ahelp hid=\".\">Click Add to add a new wiki server.<br/>Select an entry and click Edit to edit the account settings.<br/>Select an entry and click Remove to remove the entry from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Prema Engadir para engadir un servidor wiki novo.<br/>Seleccione unha entrada e prema Editar para editar a configuración da conta.<br/>Seleccione unha entrada e prema Retirar para eliminar a entrada da lista.</ahelp>"
#: wikisettings.xhp
msgctxt ""
diff --git a/source/gl/uui/uiconfig/ui.po b/source/gl/uui/uiconfig/ui.po
index a528bec8214..cd41eee51d4 100644
--- a/source/gl/uui/uiconfig/ui.po
+++ b/source/gl/uui/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-11-30 21:36+0000\n"
+"PO-Revision-Date: 2017-02-16 22:26+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480541772.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487283977.000000\n"
#: authfallback.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enter the 6 digit PIN:"
-msgstr ""
+msgstr "Introduza o PIN de 6 díxitos:"
#: filterselect.ui
msgctxt ""
diff --git a/source/gl/vcl/source/src.po b/source/gl/vcl/source/src.po
index d094864c453..ae95308778f 100644
--- a/source/gl/vcl/source/src.po
+++ b/source/gl/vcl/source/src.po
@@ -4,7 +4,7 @@ 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-11-04 22:37+0000\n"
+"PO-Revision-Date: 2017-02-16 23:10+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1478299056.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487286636.000000\n"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"SV_APP_VCLBACKEND\n"
"string.text"
msgid "VCL: "
-msgstr ""
+msgstr "VCL:"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"SV_APP_LAYOUT_ENGINE\n"
"string.text"
msgid "Layout Engine: "
-msgstr ""
+msgstr "Motor de disposición:"
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"SV_APP_LAYOUT_NEW\n"
"string.text"
msgid "new"
-msgstr ""
+msgstr "novo"
#: app.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"SV_APP_LAYOUT_OLD\n"
"string.text"
msgid "old"
-msgstr ""
+msgstr "antigo"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/gl/xmlsecurity/uiconfig/ui.po b/source/gl/xmlsecurity/uiconfig/ui.po
index 778c7ed6b89..7ee18e34514 100644
--- a/source/gl/xmlsecurity/uiconfig/ui.po
+++ b/source/gl/xmlsecurity/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-12-10 23:39+0100\n"
-"PO-Revision-Date: 2016-12-01 23:48+0000\n"
+"PO-Revision-Date: 2017-02-16 22:34+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480636096.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487284444.000000\n"
#: certgeneral.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Signature type"
-msgstr ""
+msgstr "Tipo de sinatura"
#: digitalsignaturesdialog.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use AdES-compliant signature when there is a choice"
-msgstr ""
+msgstr "Empregar unha sinatura compatíbel con AdES se existir esa opción"
#: macrosecuritydialog.ui
msgctxt ""
diff --git a/source/he/chart2/uiconfig/ui.po b/source/he/chart2/uiconfig/ui.po
index d6905f53935..155a03e9520 100644
--- a/source/he/chart2/uiconfig/ui.po
+++ b/source/he/chart2/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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: 2017-01-29 09:57+0000\n"
+"PO-Revision-Date: 2017-02-18 11:55+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485683833.000000\n"
+"X-POOTLE-MTIME: 1487418913.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text Orientation"
-msgstr "יישור הטקסט"
+msgstr "כיוון הטקסט"
#: tp_3D_SceneAppearance.ui
msgctxt ""
@@ -2915,7 +2915,6 @@ msgid "_Constant Value"
msgstr "ערך _קבוע"
#: tp_ErrorBars.ui
-#, fuzzy
msgctxt ""
"tp_ErrorBars.ui\n"
"RB_PERCENT\n"
@@ -3185,7 +3184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation"
-msgstr ""
+msgstr "כיווניות"
#: tp_PolarOptions.ui
msgctxt ""
@@ -3662,7 +3661,6 @@ msgid "Include _values from hidden cells"
msgstr "ל_כלול ערכים מתאים מוסתרים"
#: tp_SeriesToAxis.ui
-#, fuzzy
msgctxt ""
"tp_SeriesToAxis.ui\n"
"label3\n"
@@ -3952,7 +3950,6 @@ msgid "Te_xt direction:"
msgstr "_כיוון הטקסט:"
#: tp_axisLabel.ui
-#, fuzzy
msgctxt ""
"tp_axisLabel.ui\n"
"labelTextOrient\n"
diff --git a/source/he/cui/uiconfig/ui.po b/source/he/cui/uiconfig/ui.po
index ef35f27f2b8..a34f92568b7 100644
--- a/source/he/cui/uiconfig/ui.po
+++ b/source/he/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 14:29+0000\n"
+"PO-Revision-Date: 2017-02-19 09:21+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168987.000000\n"
+"X-POOTLE-MTIME: 1487496099.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -2204,14 +2204,13 @@ msgid "Asian layout _mode"
msgstr "מצב מתווה המזרח הרחוק"
#: cellalignment.ui
-#, fuzzy
msgctxt ""
"cellalignment.ui\n"
"labelTextOrient\n"
"label\n"
"string.text"
msgid "Text Orientation"
-msgstr "אורינטציית טקסט"
+msgstr "כיוון הטקסט"
#: cellalignment.ui
msgctxt ""
@@ -10231,7 +10230,6 @@ msgid "Context"
msgstr "הקשר"
#: optctlpage.ui
-#, fuzzy
msgctxt ""
"optctlpage.ui\n"
"label4\n"
@@ -16134,7 +16132,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "To _frame"
-msgstr ""
+msgstr "למ_סגרת"
#: swpossizepage.ui
msgctxt ""
@@ -16501,7 +16499,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Fit to frame"
-msgstr ""
+msgstr "הת_אמה למסגרת"
#: textattrtabpage.ui
msgctxt ""
diff --git a/source/he/extensions/source/propctrlr.po b/source/he/extensions/source/propctrlr.po
index 73439dbad99..dff9774ed45 100644
--- a/source/he/extensions/source/propctrlr.po
+++ b/source/he/extensions/source/propctrlr.po
@@ -4,7 +4,7 @@ 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-12-24 10:28+0000\n"
+"PO-Revision-Date: 2017-02-18 11:28+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482575308.000000\n"
+"X-POOTLE-MTIME: 1487417312.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -1899,7 +1899,7 @@ msgctxt ""
"RID_STR_ORIENTATION\n"
"string.text"
msgid "Orientation"
-msgstr "כיוון"
+msgstr "כיווניות"
#: formres.src
msgctxt ""
@@ -2808,7 +2808,7 @@ msgctxt ""
"To Frame\n"
"itemlist.text"
msgid "To Frame"
-msgstr ""
+msgstr "למסגרת"
#: formres.src
msgctxt ""
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office.po b/source/he/officecfg/registry/data/org/openoffice/Office.po
index ef83acd2935..46a71429dba 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ 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-12-25 05:22+0000\n"
+"PO-Revision-Date: 2017-02-18 11:31+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1482643352.000000\n"
+"X-POOTLE-MTIME: 1487417493.000000\n"
#: Addons.xcu
msgctxt ""
@@ -11770,7 +11770,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HTML frameset, left"
-msgstr "פריים ‏‪HTML‬‏, לשמאל"
+msgstr "איגוד מסגרות HTML, לשמאל"
#: WebWizard.xcu
msgctxt ""
@@ -11779,7 +11779,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HTML frameset, right"
-msgstr "פריים ‏‪HTML‬‏, לימין"
+msgstr "איגוד מסגרות HTML, לימין"
#: WebWizard.xcu
msgctxt ""
@@ -11788,7 +11788,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HTML frameset, top"
-msgstr "פריים ‏‪HTML‬‏, למעלה"
+msgstr "איגוד מסגרות HTML, למעלה"
#: WebWizard.xcu
msgctxt ""
@@ -11797,7 +11797,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "HTML frameset, bottom"
-msgstr "פריים ‏‪HTML‬‏, למטה"
+msgstr "איגוד מסגרות HTML, למטה"
#: WebWizard.xcu
msgctxt ""
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index 69b706b0832..956075edccd 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ 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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-02-15 14:26+0000\n"
+"PO-Revision-Date: 2017-02-19 09:20+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168792.000000\n"
+"X-POOTLE-MTIME: 1487496056.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1916,7 +1916,6 @@ msgid "~Normal"
msgstr "רגיל"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PagebreakMode\n"
@@ -4144,14 +4143,13 @@ msgid "OLE Object"
msgstr "עצם‪OLE ‬‏"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/popupmenu/pagebreak\n"
"UIName\n"
"value.text"
msgid "Page Break"
-msgstr "מעבר ~עמוד"
+msgstr "מעבר עמוד"
#: CalcWindowState.xcu
#, fuzzy
@@ -7733,14 +7731,13 @@ msgid "~Insert Snap Point/Line..."
msgstr "הכנסת נקודת/קו הצמדה...‏"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n"
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "סרגל"
+msgstr "~סרגלים"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7749,7 +7746,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "View ~Rulers"
-msgstr ""
+msgstr "ה~צגת סרגלים"
#: DrawImpressCommands.xcu
#, fuzzy
@@ -16705,7 +16702,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Remote"
-msgstr ""
+msgstr "פתיחת מרוחקים"
#: GenericCommands.xcu
msgctxt ""
@@ -16714,7 +16711,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Open Remote ~File..."
-msgstr ""
+msgstr "פתיחת קובץ מ~רוחק…"
#: GenericCommands.xcu
msgctxt ""
@@ -16723,7 +16720,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open Remote File"
-msgstr ""
+msgstr "פתיחת קובץ מרוחק"
#: GenericCommands.xcu
msgctxt ""
@@ -18373,14 +18370,13 @@ msgid "F~ull Screen"
msgstr "מסך מלא"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFrameMenu\n"
"Label\n"
"value.text"
msgid "~Frame"
-msgstr "מסגרת"
+msgstr "מ~סגרת"
#: GenericCommands.xcu
#, fuzzy
@@ -18641,14 +18637,13 @@ msgid "~Line"
msgstr "קו"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:RulerMenu\n"
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "סרגל"
+msgstr "~סרגלים"
#: GenericCommands.xcu
msgctxt ""
@@ -20230,7 +20225,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "בדיקת איות אוטומטית"
#: GenericCommands.xcu
msgctxt ""
@@ -20681,7 +20676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gallery"
-msgstr ""
+msgstr "גלריה"
#: GenericCommands.xcu
msgctxt ""
@@ -22684,7 +22679,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Menubar"
-msgstr ""
+msgstr "סרגל תפריטים"
#: GenericCommands.xcu
msgctxt ""
@@ -25121,14 +25116,13 @@ msgid "AutoTe~xt..."
msgstr "טקסט ~אוטומטי...‏"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
"Label\n"
"value.text"
msgid "~Normal View"
-msgstr "תצוגה רגילה"
+msgstr "תצוגה ~רגילה"
#: WriterCommands.xcu
#, fuzzy
@@ -25183,7 +25177,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comments"
-msgstr ""
+msgstr "הצגת הערות"
#: WriterCommands.xcu
msgctxt ""
@@ -25608,7 +25602,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Track Changes"
-msgstr ""
+msgstr "מ~עקב אחר שינויים"
#: WriterCommands.xcu
msgctxt ""
@@ -25898,7 +25892,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr ""
+msgstr "מעבר ~עמוד"
#: WriterCommands.xcu
msgctxt ""
@@ -25907,7 +25901,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Page Break"
-msgstr ""
+msgstr "הוספת מעבר עמוד"
#: WriterCommands.xcu
msgctxt ""
@@ -25952,7 +25946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame"
-msgstr ""
+msgstr "מסגרת"
#: WriterCommands.xcu
#, fuzzy
@@ -25971,7 +25965,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Frame"
-msgstr ""
+msgstr "הוספת מסגרת"
#: WriterCommands.xcu
#, fuzzy
@@ -27265,7 +27259,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~More Options..."
-msgstr ""
+msgstr "אפשרויות ~נוספות…"
#: WriterCommands.xcu
msgctxt ""
@@ -28770,14 +28764,13 @@ msgid "Select Text"
msgstr "בחירת טקסט"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Ruler\n"
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "סרגל"
+msgstr "~סרגלים"
#: WriterCommands.xcu
msgctxt ""
@@ -29434,7 +29427,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~mphasis"
-msgstr ""
+msgstr "ה~דגשה"
#: WriterCommands.xcu
msgctxt ""
@@ -29443,7 +29436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Strong Emphasis"
-msgstr ""
+msgstr "הדגשה ~חזקה"
#: WriterCommands.xcu
msgctxt ""
@@ -29461,7 +29454,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sou~rce Text"
-msgstr ""
+msgstr "טקסט מ~קור"
#: WriterCommands.xcu
msgctxt ""
@@ -29488,7 +29481,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Orientation"
-msgstr ""
+msgstr "כיווניות"
#: WriterCommands.xcu
msgctxt ""
@@ -29497,7 +29490,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Size"
-msgstr ""
+msgstr "גודל העמוד"
#: WriterCommands.xcu
msgctxt ""
@@ -29506,7 +29499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Margin"
-msgstr ""
+msgstr "שולי העמוד"
#: WriterFormWindowState.xcu
#, fuzzy
@@ -29558,14 +29551,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: WriterFormWindowState.xcu
#, fuzzy
@@ -29651,7 +29643,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr ""
+msgstr "מיזוג דואר"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -30018,14 +30010,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: WriterGlobalWindowState.xcu
#, fuzzy
@@ -30478,14 +30469,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: WriterReportWindowState.xcu
#, fuzzy
@@ -30571,7 +30561,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr ""
+msgstr "מיזוג דואר"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -30918,14 +30908,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: WriterWebWindowState.xcu
#, fuzzy
@@ -31333,14 +31322,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: WriterWindowState.xcu
#, fuzzy
@@ -31857,14 +31845,13 @@ msgid "Text Box Formatting"
msgstr "עיצוב תיבת טקסט"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/popupmenu/frame\n"
"UIName\n"
"value.text"
msgid "Text Frame"
-msgstr "אל המסגרת הבאה"
+msgstr "מסגרת טקסט"
#: XFormsWindowState.xcu
#, fuzzy
diff --git a/source/he/reportdesign/source/ui/inspection.po b/source/he/reportdesign/source/ui/inspection.po
index a7cea9c5c43..86fe58d2597 100644
--- a/source/he/reportdesign/source/ui/inspection.po
+++ b/source/he/reportdesign/source/ui/inspection.po
@@ -4,8 +4,8 @@ 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: 2013-06-21 21:55+0000\n"
-"Last-Translator: Lior Kaplan <kaplanlior@gmail.com>\n"
+"PO-Revision-Date: 2017-02-18 11:43+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1371851726.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487418195.000000\n"
#: inspection.src
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "לא"
#: inspection.src
msgctxt ""
@@ -48,7 +48,7 @@ msgctxt ""
"Yes\n"
"itemlist.text"
msgid "Yes"
-msgstr ""
+msgstr "כן"
#: inspection.src
msgctxt ""
@@ -74,7 +74,7 @@ msgctxt ""
"Before Section\n"
"itemlist.text"
msgid "Before Section"
-msgstr ""
+msgstr "לפני המקטע"
#: inspection.src
msgctxt ""
@@ -83,7 +83,7 @@ msgctxt ""
"After Section\n"
"itemlist.text"
msgid "After Section"
-msgstr ""
+msgstr "אחרי המקטע"
#: inspection.src
msgctxt ""
@@ -92,7 +92,7 @@ msgctxt ""
"Before & After Section\n"
"itemlist.text"
msgid "Before & After Section"
-msgstr ""
+msgstr "לפני ואחרי המקטע"
#: inspection.src
msgctxt ""
@@ -117,7 +117,7 @@ msgctxt ""
"No\n"
"itemlist.text"
msgid "No"
-msgstr ""
+msgstr "לא"
#: inspection.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"RID_STR_REPEATSECTION\n"
"string.text"
msgid "Repeat Section"
-msgstr "חזרה על הקטע"
+msgstr "חזרה על המקטע"
#: inspection.src
msgctxt ""
@@ -267,7 +267,7 @@ msgctxt ""
"Section\n"
"itemlist.text"
msgid "Section"
-msgstr ""
+msgstr "מקטע"
#: inspection.src
msgctxt ""
@@ -276,7 +276,7 @@ msgctxt ""
"Automatic\n"
"itemlist.text"
msgid "Automatic"
-msgstr ""
+msgstr "אוטומטי"
#: inspection.src
msgctxt ""
@@ -301,7 +301,7 @@ msgctxt ""
"All Pages\n"
"itemlist.text"
msgid "All Pages"
-msgstr ""
+msgstr "כל העמודים"
#: inspection.src
msgctxt ""
@@ -506,7 +506,7 @@ msgctxt ""
"Function\n"
"itemlist.text"
msgid "Function"
-msgstr ""
+msgstr "פונקציה"
#: inspection.src
msgctxt ""
@@ -515,7 +515,7 @@ msgctxt ""
"Counter\n"
"itemlist.text"
msgid "Counter"
-msgstr ""
+msgstr "מונה"
#: inspection.src
msgctxt ""
@@ -524,7 +524,7 @@ msgctxt ""
"User defined Function\n"
"itemlist.text"
msgid "User defined Function"
-msgstr ""
+msgstr "פונקציה מוגדרת על ידי המשתמש"
#: inspection.src
msgctxt ""
diff --git a/source/he/reportdesign/source/ui/report.po b/source/he/reportdesign/source/ui/report.po
index 49e04ada744..86186cdf9c0 100644
--- a/source/he/reportdesign/source/ui/report.po
+++ b/source/he/reportdesign/source/ui/report.po
@@ -4,7 +4,7 @@ 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-05-04 07:04+0000\n"
+"PO-Revision-Date: 2017-02-18 11:27+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462345498.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487417224.000000\n"
#: report.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"RID_STR_PROPTITLE_SECTION\n"
"string.text"
msgid "Section"
-msgstr "קטע"
+msgstr "מקטע"
#: report.src
msgctxt ""
@@ -612,7 +612,7 @@ msgctxt ""
"SID_SECTION_SHRINK_MENU\n"
"menuitem.text"
msgid "Section"
-msgstr "קטע"
+msgstr "מקטע"
#: report.src
msgctxt ""
@@ -843,7 +843,7 @@ msgctxt ""
"RID_STR_UNDO_SHRINK\n"
"string.text"
msgid "Shrink Section"
-msgstr "צמצום קטע"
+msgstr "צמצום מקטע"
#: report.src
msgctxt ""
diff --git a/source/he/reportdesign/uiconfig/dbreport/ui.po b/source/he/reportdesign/uiconfig/dbreport/ui.po
index c892f844cf6..0ffe6f9f3c5 100644
--- a/source/he/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/he/reportdesign/uiconfig/dbreport/ui.po
@@ -4,7 +4,7 @@ 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-05-01 22:49+0000\n"
+"PO-Revision-Date: 2017-02-18 11:44+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462142953.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487418243.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Sorting and Grouping"
-msgstr ""
+msgstr "מיון וקיבוץ"
#: floatingfield.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "מיון בסדר עולה"
#: floatingfield.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sort Descending"
-msgstr ""
+msgstr "מיון בסדר יורד"
#: floatingfield.ui
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove sorting"
-msgstr ""
+msgstr "הסרת המיון"
#: floatingfield.ui
msgctxt ""
diff --git a/source/he/sc/source/ui/styleui.po b/source/he/sc/source/ui/styleui.po
index 46377e446e7..7ef7c076861 100644
--- a/source/he/sc/source/ui/styleui.po
+++ b/source/he/sc/source/ui/styleui.po
@@ -4,8 +4,8 @@ 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: 2015-12-11 16:49+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 11:41+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449852592.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487418108.000000\n"
#: scstyles.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "כל הסגנונות"
#: scstyles.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "סגנונות נסתרים"
#: scstyles.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "כל הסגנונות"
#: scstyles.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "סגנונות נסתרים"
#: scstyles.src
msgctxt ""
diff --git a/source/he/sc/uiconfig/scalc/ui.po b/source/he/sc/uiconfig/scalc/ui.po
index eb1bf6bce97..a789409f3da 100644
--- a/source/he/sc/uiconfig/scalc/ui.po
+++ b/source/he/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 14:28+0000\n"
+"PO-Revision-Date: 2017-02-18 11:55+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168882.000000\n"
+"X-POOTLE-MTIME: 1487418954.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -5962,7 +5962,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "בדיקת איות אוטומטית"
#: notebookbar.ui
msgctxt ""
@@ -9947,7 +9947,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Text Orientation"
-msgstr ""
+msgstr "כיוון הטקסט"
#: sidebaralignment.ui
msgctxt ""
@@ -12089,7 +12089,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Page break between groups"
-msgstr ""
+msgstr "מע_בר עמוד בין קבוצות"
#: subtotaloptionspage.ui
#, fuzzy
@@ -12607,7 +12607,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Page breaks"
-msgstr ""
+msgstr "מ_עברי עמוד"
#: tpviewpage.ui
msgctxt ""
diff --git a/source/he/sd/source/ui/app.po b/source/he/sd/source/ui/app.po
index b7a84e7c893..4d6f191a21e 100644
--- a/source/he/sd/source/ui/app.po
+++ b/source/he/sd/source/ui/app.po
@@ -4,7 +4,7 @@ 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: 2017-02-15 14:15+0000\n"
+"PO-Revision-Date: 2017-02-18 11:33+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168116.000000\n"
+"X-POOTLE-MTIME: 1487417606.000000\n"
#: popup.src
msgctxt ""
@@ -991,7 +991,7 @@ msgctxt ""
"STR_UNDO_INSERT_TEXTFRAME\n"
"string.text"
msgid "Insert text frame"
-msgstr "הכנסת מסגרת טקסט"
+msgstr "הוספת מסגרת טקסט"
#: strings.src
msgctxt ""
diff --git a/source/he/sd/uiconfig/sdraw/ui.po b/source/he/sd/uiconfig/sdraw/ui.po
index ac5cbc84e05..f0da0770be4 100644
--- a/source/he/sd/uiconfig/sdraw/ui.po
+++ b/source/he/sd/uiconfig/sdraw/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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-09-21 13:09+0000\n"
+"PO-Revision-Date: 2017-02-18 11:21+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1474463384.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487416904.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -273,7 +273,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Same orientation"
-msgstr "כיוון דומה"
+msgstr "כיווניות זהה"
#: crossfadedialog.ui
msgctxt ""
diff --git a/source/he/sd/uiconfig/simpress/ui.po b/source/he/sd/uiconfig/simpress/ui.po
index ebf9113baa0..0b41c3401a9 100644
--- a/source/he/sd/uiconfig/simpress/ui.po
+++ b/source/he/sd/uiconfig/simpress/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\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: 2017-02-15 14:28+0000\n"
+"PO-Revision-Date: 2017-02-18 11:55+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168899.000000\n"
+"X-POOTLE-MTIME: 1487418957.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto Spellcheck"
-msgstr ""
+msgstr "בדיקת איות אוטומטית"
#: notebookbar.ui
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rulers visible"
-msgstr ""
+msgstr "סרגלים _גלויים"
#: sdviewpage.ui
msgctxt ""
@@ -3770,7 +3770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation: "
-msgstr ""
+msgstr "כיווניות: "
#: sidebarslidebackground.ui
msgctxt ""
diff --git a/source/he/sfx2/source/dialog.po b/source/he/sfx2/source/dialog.po
index b4b31f99384..993e40ffb60 100644
--- a/source/he/sfx2/source/dialog.po
+++ b/source/he/sfx2/source/dialog.po
@@ -4,7 +4,7 @@ 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-05-01 22:50+0000\n"
+"PO-Revision-Date: 2017-02-19 09:21+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462143057.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487496063.000000\n"
#: dialog.src
msgctxt ""
@@ -237,7 +237,7 @@ msgctxt ""
"SID_MENUBAR\n"
"menuitem.text"
msgid "Menubar"
-msgstr ""
+msgstr "סרגל תפריטים"
#: dialog.src
msgctxt ""
diff --git a/source/he/sfx2/uiconfig/ui.po b/source/he/sfx2/uiconfig/ui.po
index 0fa3a8e1384..cb1b1a8d4d4 100644
--- a/source/he/sfx2/uiconfig/ui.po
+++ b/source/he/sfx2/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-01 12:11+0100\n"
-"PO-Revision-Date: 2017-02-15 14:17+0000\n"
+"PO-Revision-Date: 2017-02-18 11:33+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168279.000000\n"
+"X-POOTLE-MTIME: 1487417618.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -907,7 +907,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Frame"
-msgstr ""
+msgstr "מ_סגרת"
#: loadtemplatedialog.ui
msgctxt ""
diff --git a/source/he/svl/source/misc.po b/source/he/svl/source/misc.po
index 78609b913b8..cdf6ce3bf06 100644
--- a/source/he/svl/source/misc.po
+++ b/source/he/svl/source/misc.po
@@ -3,18 +3,18 @@ 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: 2013-11-20 13:02+0100\n"
-"PO-Revision-Date: 2013-12-30 10:31+0000\n"
-"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-02-18 11:33+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1388399496.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487417627.000000\n"
#: mediatyp.src
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_FRAMESET\n"
"string.text"
msgid "Frameset Document"
-msgstr "מסמך מסגרות"
+msgstr "מסמך איגוד מסגרות"
#: mediatyp.src
msgctxt ""
diff --git a/source/he/svx/source/form.po b/source/he/svx/source/form.po
index e597a80a5c5..705efe5a093 100644
--- a/source/he/svx/source/form.po
+++ b/source/he/svx/source/form.po
@@ -4,7 +4,7 @@ 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-10-14 12:47+0000\n"
+"PO-Revision-Date: 2017-02-18 11:23+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1476449254.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487417038.000000\n"
#: datanavi.src
#, fuzzy
@@ -1498,7 +1498,7 @@ msgctxt ""
"Intersection\n"
"itemlist.text"
msgid "Intersection"
-msgstr ""
+msgstr "חיתוך"
#: fmstring.src
msgctxt ""
diff --git a/source/he/svx/uiconfig/ui.po b/source/he/svx/uiconfig/ui.po
index 9145c8448d5..d26a00038f0 100644
--- a/source/he/svx/uiconfig/ui.po
+++ b/source/he/svx/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-02-15 14:28+0000\n"
+"PO-Revision-Date: 2017-02-18 11:33+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168920.000000\n"
+"X-POOTLE-MTIME: 1487417638.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -2551,7 +2551,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Orientation"
-msgstr ""
+msgstr "כיווניות"
#: dockingfontwork.ui
msgctxt ""
@@ -3928,7 +3928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Frame:"
-msgstr ""
+msgstr "מסגרת:‏"
#: imapdialog.ui
msgctxt ""
diff --git a/source/he/sw/source/core/undo.po b/source/he/sw/source/core/undo.po
index 6664120a2f0..4d83dc7f8bc 100644
--- a/source/he/sw/source/core/undo.po
+++ b/source/he/sw/source/core/undo.po
@@ -4,7 +4,7 @@ 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: 2017-02-15 14:15+0000\n"
+"PO-Revision-Date: 2017-02-18 11:37+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168122.000000\n"
+"X-POOTLE-MTIME: 1487417823.000000\n"
#: undo.src
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"STR_INSERT_PAGE_BREAK_UNDO\n"
"string.text"
msgid "Insert page break"
-msgstr "הכנסת מעבר עמוד"
+msgstr "הוספת מעבר עמוד"
#: undo.src
msgctxt ""
diff --git a/source/he/sw/source/ui/app.po b/source/he/sw/source/ui/app.po
index 2f278dfe13c..10f7bc9bb64 100644
--- a/source/he/sw/source/ui/app.po
+++ b/source/he/sw/source/ui/app.po
@@ -4,7 +4,7 @@ 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: 2017-01-19 07:48+0000\n"
+"PO-Revision-Date: 2017-02-18 10:38+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484812119.000000\n"
+"X-POOTLE-MTIME: 1487414290.000000\n"
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_PARAGRAPHSTYLEFAMILY\n"
"string.text"
msgid "Paragraph Styles"
-msgstr ""
+msgstr "סגנונות פסקה"
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_CHARACTERSTYLEFAMILY\n"
"string.text"
msgid "Character Styles"
-msgstr ""
+msgstr "סגנונות תו"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_FRAMESTYLEFAMILY\n"
"string.text"
msgid "Frame Styles"
-msgstr ""
+msgstr "סגנונות מסגרת"
#: app.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_PAGESTYLEFAMILY\n"
"string.text"
msgid "Page Styles"
-msgstr ""
+msgstr "סגנונות עמוד"
#: app.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_LISTSTYLEFAMILY\n"
"string.text"
msgid "List Styles"
-msgstr ""
+msgstr "סגנונות רשימה"
#: app.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"STR_TABLESTYLEFAMILY\n"
"string.text"
msgid "Table Styles"
-msgstr ""
+msgstr "סגנונות טבלה"
#: app.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"All Styles\n"
"itemlist.text"
msgid "All Styles"
-msgstr ""
+msgstr "כל הסגנונות"
#: app.src
msgctxt ""
@@ -96,7 +96,7 @@ msgctxt ""
"Hidden Styles\n"
"itemlist.text"
msgid "Hidden Styles"
-msgstr ""
+msgstr "סגנונות נסתרים"
#: app.src
msgctxt ""
@@ -114,7 +114,7 @@ msgctxt ""
"Custom Styles\n"
"itemlist.text"
msgid "Custom Styles"
-msgstr ""
+msgstr "סגנונות בהתאמה אישית"
#: app.src
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"Text Styles\n"
"itemlist.text"
msgid "Text Styles"
-msgstr ""
+msgstr "סגנונות טקסט"
#: app.src
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"List Styles\n"
"itemlist.text"
msgid "List Styles"
-msgstr ""
+msgstr "סגנונות רשימה"
#: app.src
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"Index Styles\n"
"itemlist.text"
msgid "Index Styles"
-msgstr ""
+msgstr "סגנונות מפתח"
#: app.src
msgctxt ""
diff --git a/source/he/sw/source/ui/config.po b/source/he/sw/source/ui/config.po
index 2b9e1a1bcaa..ac428ca71f1 100644
--- a/source/he/sw/source/ui/config.po
+++ b/source/he/sw/source/ui/config.po
@@ -4,7 +4,7 @@ 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-03-09 20:49+0100\n"
-"PO-Revision-Date: 2017-01-22 12:22+0000\n"
+"PO-Revision-Date: 2017-02-18 10:39+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485087729.000000\n"
+"X-POOTLE-MTIME: 1487414384.000000\n"
#: optdlg.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"ST_SCRIPT_CTL\n"
"string.text"
msgid "CTL"
-msgstr ""
+msgstr "סגנונות כתיבה מורכבים"
#: optdlg.src
msgctxt ""
diff --git a/source/he/sw/source/ui/dbui.po b/source/he/sw/source/ui/dbui.po
index ae95e6c1b82..a247b749d39 100644
--- a/source/he/sw/source/ui/dbui.po
+++ b/source/he/sw/source/ui/dbui.po
@@ -4,7 +4,7 @@ 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-04-16 21:40+0200\n"
-"PO-Revision-Date: 2017-01-22 12:21+0000\n"
+"PO-Revision-Date: 2017-02-18 10:39+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485087683.000000\n"
+"X-POOTLE-MTIME: 1487414393.000000\n"
#: dbui.src
msgctxt ""
@@ -247,7 +247,7 @@ msgctxt ""
"ST_SAVEMERGED\n"
"string.text"
msgid "Save merged document"
-msgstr ""
+msgstr "שמירת המסמך הממוזג"
#: dbui.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/docvw.po b/source/he/sw/source/uibase/docvw.po
index 497e64ce40b..fc41a1db651 100644
--- a/source/he/sw/source/uibase/docvw.po
+++ b/source/he/sw/source/uibase/docvw.po
@@ -4,7 +4,7 @@ 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-05-07 21:35+0200\n"
-"PO-Revision-Date: 2017-01-22 11:44+0000\n"
+"PO-Revision-Date: 2017-02-18 10:40+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485085458.000000\n"
+"X-POOTLE-MTIME: 1487414415.000000\n"
#: docvw.src
msgctxt ""
@@ -389,7 +389,7 @@ msgctxt ""
"STR_HEADER_TITLE\n"
"string.text"
msgid "Header (%1)"
-msgstr ""
+msgstr "כותרת עליונה (%1)"
#: docvw.src
msgctxt ""
@@ -397,7 +397,7 @@ msgctxt ""
"STR_FIRST_HEADER_TITLE\n"
"string.text"
msgid "First Page Header (%1)"
-msgstr ""
+msgstr "כותרת עליונה לעמוד הראשון (%1)"
#: docvw.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/lingu.po b/source/he/sw/source/uibase/lingu.po
index a099337f96b..dd6100f5fea 100644
--- a/source/he/sw/source/uibase/lingu.po
+++ b/source/he/sw/source/uibase/lingu.po
@@ -4,17 +4,17 @@ 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-03-09 20:49+0100\n"
-"PO-Revision-Date: 2016-11-23 06:51+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 10:54+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1479883908.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487415264.000000\n"
#: olmenu.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"FN_REDLINE_ACCEPT_DIRECT\n"
"menuitem.text"
msgid "Accept Change"
-msgstr ""
+msgstr "קבלת השינוי"
#: olmenu.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"FN_REDLINE_REJECT_DIRECT\n"
"menuitem.text"
msgid "Reject Change"
-msgstr ""
+msgstr "דחיית השינוי"
#: olmenu.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"FN_REDLINE_PREV_CHANGE\n"
"menuitem.text"
msgid "Previous Change"
-msgstr ""
+msgstr "השינוי הקודם"
#: olmenu.src
msgctxt ""
@@ -112,7 +112,7 @@ msgctxt ""
"STR_WORD\n"
"string.text"
msgid "Word is "
-msgstr ""
+msgstr "המילה היא "
#: olmenu.src
msgctxt ""
@@ -120,7 +120,7 @@ msgctxt ""
"STR_PARAGRAPH\n"
"string.text"
msgid "Paragraph is "
-msgstr ""
+msgstr "הפסקה היא "
#: olmenu.src
msgctxt ""
@@ -128,7 +128,7 @@ msgctxt ""
"STR_SPELL_OK\n"
"string.text"
msgid "The spellcheck is complete."
-msgstr ""
+msgstr "בדיקת האיות הושלמה.‏"
#: olmenu.src
msgctxt ""
@@ -152,7 +152,7 @@ msgctxt ""
"STR_RESET_TO_DEFAULT_LANGUAGE\n"
"string.text"
msgid "Reset to Default Language"
-msgstr ""
+msgstr "איפוס לשפת בררת המחדל"
#: olmenu.src
msgctxt ""
@@ -160,7 +160,7 @@ msgctxt ""
"STR_LANGSTATUS_MORE\n"
"string.text"
msgid "More..."
-msgstr ""
+msgstr "עוד..."
#: olmenu.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/ribbar.po b/source/he/sw/source/uibase/ribbar.po
index c7861a2737a..ac311494470 100644
--- a/source/he/sw/source/uibase/ribbar.po
+++ b/source/he/sw/source/uibase/ribbar.po
@@ -4,17 +4,17 @@ 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-11-09 10:52+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-18 11:34+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1478688734.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487417656.000000\n"
#: inputwin.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"MN_CALC_SQRT\n"
"menuitem.text"
msgid "Square Root"
-msgstr ""
+msgstr "שורש רבועי"
#: inputwin.src
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"MN_CALC_LES\n"
"menuitem.text"
msgid "Less"
-msgstr ""
+msgstr "פחות"
#: inputwin.src
msgctxt ""
@@ -298,7 +298,7 @@ msgctxt ""
"STR_ACCESS_FORMULA_TOOLBAR\n"
"string.text"
msgid "Formula Tool Bar"
-msgstr ""
+msgstr "סרגל נוסחאות"
#: inputwin.src
msgctxt ""
@@ -306,7 +306,7 @@ msgctxt ""
"STR_ACCESS_FORMULA_TYPE\n"
"string.text"
msgid "Formula Type"
-msgstr ""
+msgstr "סוג הנוסחה"
#: inputwin.src
msgctxt ""
@@ -314,7 +314,7 @@ msgctxt ""
"STR_ACCESS_FORMULA_TEXT\n"
"string.text"
msgid "Formula Text"
-msgstr ""
+msgstr "טקסט הנוסחה"
#: workctrl.src
msgctxt ""
@@ -330,7 +330,7 @@ msgctxt ""
"ST_FRM\n"
"string.text"
msgid "Text Frame"
-msgstr ""
+msgstr "מסגרת טקסט"
#: workctrl.src
msgctxt ""
@@ -362,7 +362,7 @@ msgctxt ""
"ST_REG\n"
"string.text"
msgid "Section"
-msgstr ""
+msgstr "מקטע"
#: workctrl.src
msgctxt ""
@@ -474,7 +474,7 @@ msgctxt ""
"STR_IMGBTN_FRM_DOWN\n"
"string.text"
msgid "Next text frame"
-msgstr ""
+msgstr "מסגרת הטקסט הבאה"
#: workctrl.src
msgctxt ""
@@ -506,7 +506,7 @@ msgctxt ""
"STR_IMGBTN_REG_DOWN\n"
"string.text"
msgid "Next section"
-msgstr ""
+msgstr "המקטע הבא"
#: workctrl.src
msgctxt ""
@@ -602,7 +602,7 @@ msgctxt ""
"STR_IMGBTN_FRM_UP\n"
"string.text"
msgid "Previous text frame"
-msgstr ""
+msgstr "מסגרת הטקסט הקודמת"
#: workctrl.src
msgctxt ""
@@ -634,7 +634,7 @@ msgctxt ""
"STR_IMGBTN_REG_UP\n"
"string.text"
msgid "Previous section"
-msgstr ""
+msgstr "המקטע הקודם"
#: workctrl.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/uiview.po b/source/he/sw/source/uibase/uiview.po
index 7b15c49452e..89cdb690641 100644
--- a/source/he/sw/source/uibase/uiview.po
+++ b/source/he/sw/source/uibase/uiview.po
@@ -4,7 +4,7 @@ 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-03-09 20:49+0100\n"
-"PO-Revision-Date: 2017-02-15 13:46+0000\n"
+"PO-Revision-Date: 2017-02-18 10:55+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487166413.000000\n"
+"X-POOTLE-MTIME: 1487415349.000000\n"
#: view.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_WEBOPTIONS\n"
"string.text"
msgid "HTML document"
-msgstr ""
+msgstr "מסמך HTML"
#: view.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_TEXTOPTIONS\n"
"string.text"
msgid "Text document"
-msgstr ""
+msgstr "מסמך טקסט"
#: view.src
msgctxt ""
diff --git a/source/he/sw/source/uibase/utlui.po b/source/he/sw/source/uibase/utlui.po
index 1c1f4ca612d..f801abec3d6 100644
--- a/source/he/sw/source/uibase/utlui.po
+++ b/source/he/sw/source/uibase/utlui.po
@@ -4,7 +4,7 @@ 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: 2017-01-22 13:15+0000\n"
+"PO-Revision-Date: 2017-02-18 11:37+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485090952.000000\n"
+"X-POOTLE-MTIME: 1487417841.000000\n"
#: attrdesc.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_NO_PAGEDESC\n"
"string.text"
msgid "No page break"
-msgstr ""
+msgstr "ללא מעבר עמוד"
#: attrdesc.src
msgctxt ""
diff --git a/source/he/sw/uiconfig/swriter/ui.po b/source/he/sw/uiconfig/swriter/ui.po
index 6cdc2e5c945..89c26fc98ac 100644
--- a/source/he/sw/uiconfig/swriter/ui.po
+++ b/source/he/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-02-15 14:29+0000\n"
+"PO-Revision-Date: 2017-02-18 11:38+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1487168943.000000\n"
+"X-POOTLE-MTIME: 1487417883.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -1608,14 +1608,13 @@ msgid "Text:"
msgstr "טקסט"
#: charurlpage.ui
-#, fuzzy
msgctxt ""
"charurlpage.ui\n"
"label39\n"
"label\n"
"string.text"
msgid "Target frame:"
-msgstr "מסגרת יעד"
+msgstr "מסגרת יעד:"
#: charurlpage.ui
msgctxt ""
@@ -2047,7 +2046,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Section"
-msgstr "קטע"
+msgstr "מקטע"
#: conditionpage.ui
msgctxt ""
@@ -2911,7 +2910,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Section"
-msgstr "קטע"
+msgstr "מקטע"
#: editsectiondialog.ui
msgctxt ""
@@ -5675,7 +5674,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "To _frame"
-msgstr ""
+msgstr "ל_מסגרת"
#: frmtypepage.ui
msgctxt ""
@@ -5873,7 +5872,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Before section"
-msgstr ""
+msgstr "_לפני המקטע"
#: indentpage.ui
msgctxt ""
@@ -5882,7 +5881,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_After section"
-msgstr ""
+msgstr "_אחרי המקטע"
#: indentpage.ui
msgctxt ""
@@ -6676,14 +6675,13 @@ msgid "Text:"
msgstr "טקסט"
#: insertsectiondialog.ui
-#, fuzzy
msgctxt ""
"insertsectiondialog.ui\n"
"InsertSectionDialog\n"
"title\n"
"string.text"
msgid "Insert Section"
-msgstr "הוספת כותרת"
+msgstr "הוספת מקטע"
#: insertsectiondialog.ui
msgctxt ""
@@ -6701,7 +6699,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Section"
-msgstr "קטע"
+msgstr "מקטע"
#: insertsectiondialog.ui
msgctxt ""
@@ -9324,7 +9322,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Gallery"
-msgstr ""
+msgstr "גלריה"
#: notebookbar.ui
msgctxt ""
@@ -12479,7 +12477,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Orientation:"
-msgstr ""
+msgstr "כיווניות:"
#: pageformatpanel.ui
msgctxt ""
@@ -14220,7 +14218,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Section"
-msgstr ""
+msgstr "מקטע חדש"
#: sectionpage.ui
msgctxt ""
@@ -14247,7 +14245,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Section"
-msgstr "מקטע"
+msgstr "מ_קטע"
#: sectionpage.ui
msgctxt ""
@@ -14623,7 +14621,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Orientation"
-msgstr ""
+msgstr "כיווניות"
#: sidebarpage.ui
msgctxt ""
@@ -15553,7 +15551,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text _orientation"
-msgstr "אורינטצית הטקסט"
+msgstr "_כיוון הטקסט"
#: tabletextflowpage.ui
msgctxt ""
@@ -15997,7 +15995,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Frame Style"
-msgstr ""
+msgstr "סגנון מסגרת"
#: templatedialog4.ui
msgctxt ""
@@ -17187,7 +17185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt frames"
-msgstr ""
+msgstr "מסגרות _טקסט"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/shared/02.po b/source/hu/helpcontent2/source/text/shared/02.po
index 814c71adc4b..b033199123f 100644
--- a/source/hu/helpcontent2/source/text/shared/02.po
+++ b/source/hu/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-08-23 13:49+0000\n"
+"PO-Revision-Date: 2017-02-17 19:44+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1471960156.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487360644.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Specifies whether the user's entered or selected combination field value should be saved in a database field.</ahelp> Several database table fields are offered which can be accessed in the current form."
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Megadja, hogy a felhasználó által megadott vagy kiválasztott kombinációs mező értéke az adatbázisba legyen mentve.</ahelp> Az aktuális űrlap által elérhető különböző adatbázismezők lesznek felsorolva."
#: 01170904.xhp
msgctxt ""
@@ -9977,7 +9977,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\">Specifies the data field where the combination field value should be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\">Meghatározza azt az adatmezőt, ahova a kombinációs mező értéke el lesz mentve.</ahelp>"
#: 01170904.xhp
msgctxt ""
@@ -9995,7 +9995,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/noRadiobutton\">Specifies that the value of this combination field will not be written in the database and will only be saved in the form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/noRadiobutton\">Megadja, hogy a felhasználó által megadott vagy kiválasztott kombinációs mező értéke nem az adatbázisba, hanem az űrlapra legyen mentve.</ahelp>"
#: 01171000.xhp
msgctxt ""
@@ -10422,7 +10422,7 @@ msgctxt ""
"par_id3155941\n"
"help.text"
msgid "The last five font names that have been selected are shown in the top part of the combo box."
-msgstr ""
+msgstr "Az öt utolsóként kiválasztott betűkészletnév a kombinált lista felső részében jelenik meg."
#: 02020000.xhp
msgctxt ""
@@ -17398,7 +17398,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Image Filter Bar"
-msgstr ""
+msgstr "Képszűrő eszköztár"
#: 24010000.xhp
msgctxt ""
@@ -17406,7 +17406,7 @@ msgctxt ""
"hd_id3151299\n"
"help.text"
msgid "<link href=\"text/shared/02/24010000.xhp\" name=\"Image Filter Bar\">Image Filter Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/24010000.xhp\" name=\"Képszűrő eszköztár\">Képszűrő eszköztár</link>"
#: 24010000.xhp
msgctxt ""
@@ -17414,7 +17414,7 @@ msgctxt ""
"par_id3156183\n"
"help.text"
msgid "<ahelp hid=\".uno:GraphicFilterToolbox\">This icon on the <emph>Image</emph> bar opens the <emph>Image Filter</emph> bar, where you can use various filters on the selected picture.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:GraphicFilterToolbox\">Ez az ikon a <emph>Kép</emph> eszköztáron megnyitja a <emph>Képszűrő</emph> eszköztárat, amelyen a kijelölt képre alkalmazható különféle szűrők helyezkednek el.</ahelp>"
#: 24010000.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/smath/guide.po b/source/hu/helpcontent2/source/text/smath/guide.po
index bce4fd24e9f..ce2562d8a23 100644
--- a/source/hu/helpcontent2/source/text/smath/guide.po
+++ b/source/hu/helpcontent2/source/text/smath/guide.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-01-10 09:22+0000\n"
+"PO-Revision-Date: 2017-02-17 22:30+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1484040124.000000\n"
+"X-POOTLE-MTIME: 1487370640.000000\n"
#: align.xhp
msgctxt ""
@@ -145,7 +145,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "You can remove these attributes using \"nbold\" and \"nitalic\". Example:"
-msgstr "Ezeket az attribútumokat az \"nbold\" és \"nitalic\" parancsok használatával távolíthatja el. Példa:"
+msgstr "Ezeket az attribútumokat az „nbold” és „nitalic” parancsok használatával távolíthatja el. Példa:"
#: attributes.xhp
msgctxt ""
@@ -480,7 +480,7 @@ msgctxt ""
"par_id6504409\n"
"help.text"
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
-msgstr "Egy Writer-szövegesdokumentumban olyan összegzésképletet szeretne beszúrni az aktuális kurzorpozícióba, mint például „szumma s^k, k = 0-tól n-ig”."
+msgstr "Egy Writer szöveges dokumentumban olyan összegzésképletet szeretne beszúrni az aktuális kurzorpozícióba, mint például „szumma s^k, k = 0-tól n-ig”."
#: limits.xhp
msgctxt ""
@@ -496,7 +496,7 @@ msgctxt ""
"par_id1276589\n"
"help.text"
msgid "You see the Math input window and the Elements pane on the left."
-msgstr ""
+msgstr "Megjelenik a Math beviteli ablaka és bal oldalon a Képletelemek panel."
#: limits.xhp
msgctxt ""
@@ -616,7 +616,7 @@ msgctxt ""
"par_id4651020\n"
"help.text"
msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements pane: select the <emph>Formats</emph> item from the list on the top, then the <emph>Small Gap</emph> icon."
-msgstr ""
+msgstr "Az f(x) és a dx között egy kis térköz van, amely a Képletelemek panel használatával is beírhat: válassza a <emph>Formázások</emph> elemet a fenti listából, majd a <emph>Kis hézag</emph> ikont."
#: limits.xhp
msgctxt ""
@@ -717,7 +717,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Create a line break by using the \"newline\" command. Everything coming after the line break is placed on the next line."
-msgstr "Szúrjon be egy sortörést a \"newline\" paranccsal. A sortörés után álló elemek a következő sorba kerülnek."
+msgstr "Szúrjon be egy sortörést a „newline” paranccsal. A sortörés után álló elemek a következő sorba kerülnek."
#: parentheses.xhp
msgctxt ""
@@ -760,7 +760,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "You can set individual brackets using \"left\" and \"right\", but the distance between the brackets will not be fixed, as they adapt to the argument. Nevertheless, there is a way to display brackets so that the distance between them is fixed. To accomplish this, place a \"\\\" (backslash) before the normal brackets. These brackets now behave like any other symbol and the alignment is the same as with other symbols:"
-msgstr "A zárójelpárok nyitó illetve záró tagját a \"left\" illetve \"right\" parancsokkal szúrhatja be. Ekkor a közöttük lévő távolság nem rögzített, hanem az argumentum méretéhez igazodik. Azonban létezik egy módszer a zárójelek közötti távolság rögzítésére. Ehhez írjon egy \"\\\" (fordított törtjel) karaktert a normál zárójel elé. Ebben az esetben a zárójel a hagyományos szimbólumokhoz hasonlóan viselkedik, és az igazítás is a többi szimbólummal megegyező módon történik:"
+msgstr "A zárójelpárok nyitó illetve záró tagját a „left” illetve „right” parancsokkal szúrhatja be. Ekkor a közöttük lévő távolság nem rögzített, hanem az argumentum méretéhez igazodik. Azonban létezik egy módszer a zárójelek közötti távolság rögzítésére. Ehhez írjon egy „\\” (fordított törtjel) karaktert a normál zárójel elé. Ebben az esetben a zárójel a hagyományos szimbólumokhoz hasonlóan viselkedik, és az igazítás is a többi szimbólummal megegyező módon történik:"
#: parentheses.xhp
msgctxt ""
@@ -891,4 +891,4 @@ msgctxt ""
"par_id9961851\n"
"help.text"
msgid "Some formulas start with an = sign. Use \"=\" to enter that character as direct text."
-msgstr "Egyes képletek = jellel kezdődnek. Használja az \"=\" alakot az egyenlőségjel közvetlen szövegként való beírásához."
+msgstr "Egyes képletek = jellel kezdődnek. Használja az „=” alakot az egyenlőségjel közvetlen szövegként való beírásához."
diff --git a/source/id/helpcontent2/source/text/sdraw.po b/source/id/helpcontent2/source/text/sdraw.po
index 74efcb60e20..9ab9d2fffbe 100644
--- a/source/id/helpcontent2/source/text/sdraw.po
+++ b/source/id/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ 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-07-15 04:11+0000\n"
+"PO-Revision-Date: 2017-02-18 09:22+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468555898.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487409730.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "Selamat datang di Bantuan $[officename] Draw"
#: main0000.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared.po b/source/id/helpcontent2/source/text/shared.po
index b2b5539ce05..db00b4a13d6 100644
--- a/source/id/helpcontent2/source/text/shared.po
+++ b/source/id/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ 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-07-13 03:50+0000\n"
+"PO-Revision-Date: 2017-02-18 09:23+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468381803.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487409834.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3134447820\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Desain Tabel"
#: main0204.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id16200812240344\n"
"help.text"
msgid "<ahelp hid=\".uno:TableDesign\">Opens the Table Design. Double-click a preview to format the table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TableDesign\">Membuka Desain Tabel. Klik ganda suatu pratampil untuk memformat tabel.</ahelp>"
#: main0204.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id3153752\n"
"help.text"
msgid "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147292\" src=\"cmd/sc_tabledesign.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147292\">Ikon</alt></image>"
#: main0204.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3156429\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Desain Tabel"
#: main0204.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/simpress/00.po b/source/id/helpcontent2/source/text/simpress/00.po
index ccd70d42b0d..ef8dd2f4a80 100644
--- a/source/id/helpcontent2/source/text/simpress/00.po
+++ b/source/id/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ 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-07-17 04:35+0000\n"
+"PO-Revision-Date: 2017-02-18 10:02+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468730114.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487412148.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Slide Master Design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Pilih <emph>Salindia - Desain Salindia Induk</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/simpress/01.po b/source/id/helpcontent2/source/text/simpress/01.po
index aedcaf33aa1..7cafc47d7b4 100644
--- a/source/id/helpcontent2/source/text/simpress/01.po
+++ b/source/id/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: libo_help simpress 4.3\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-07-18 21:45+0000\n"
+"PO-Revision-Date: 2017-02-18 10:03+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: ID <id@li.org>\n"
"Language: id\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1468878349.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487412229.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -492,7 +492,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Opens the Navigator, where you can quickly jump to other slides or move between open files.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/NavigatorPanel\">Membuka Navigator, dimana Anda bisa dengan cepat melompat ke salindia lain atau antara berkas yang sedang dibuka.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Jumps to the first slide in the slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/navigatorpanel/first\">Melompat ke salindia pertama dalam pertunjukan salindia.</ahelp>"
#: 02110000.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/smath.po b/source/id/helpcontent2/source/text/smath.po
index cea655531e4..16fd1e3cf90 100644
--- a/source/id/helpcontent2/source/text/smath.po
+++ b/source/id/helpcontent2/source/text/smath.po
@@ -4,7 +4,7 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-07-13 03:48+0000\n"
+"PO-Revision-Date: 2017-02-18 10:01+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1468381693.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487412065.000000\n"
#: main0000.xhp
msgctxt ""
@@ -250,7 +250,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>View - Elements</emph></link>."
-msgstr ""
+msgstr "Menata skala tampilan dan menentukan elemen mana yang Anda inginkan agar nampak. Kebanyakan perintah yang bisa Anda ketik pada jendela <emph>Perintah</emph> juga dapat Anda akses melalui klik tetikus apabila Anda sudah membuka panel Elemen dengan mengklik <link href=\"text/smath/01/03090000.xhp\" name=\"View - Elements\"><emph>Tilikan - Elemen</emph></link>."
#: main0103.xhp
msgctxt ""
@@ -615,4 +615,4 @@ msgctxt ""
"par_id3148774\n"
"help.text"
msgid "To make working with formulas easier, use the context menus, which can be called up with a right mouse click. This applies especially to the Commands window. This context menu contains all the commands that are found in the Elements pane, and also operators, and so on, which can be inserted into your formula by mouse-click without having to key them into the Commands window."
-msgstr ""
+msgstr "Agar bekerja dengan rumus menjadi lebih mudah, gunakan menu konteks, yang bisa dipanggil dengan mengklik kanan tombol tetikus. Cara ini berlaku khususnya untuk jendela Perintah. Menu konteks ini memuat semua perintah yang ditemukan pada panel Elemen, maupun operator, dan hal lainnya, yang dapat disisipkan ke dalam rumus Anda dengan klik tetikus tanpa perlu mengetikkan mereka ke dalam jendela Perintah."
diff --git a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
index 054c812b4c6..a999943ee14 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-12-27 21:51+0100\n"
-"PO-Revision-Date: 2017-01-25 20:26+0000\n"
+"PO-Revision-Date: 2017-02-19 19:35+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1485376002.000000\n"
+"X-POOTLE-MTIME: 1487532933.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3749,7 +3749,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comment"
-msgstr "~Comment cella"
+msgstr "~Commento cella"
#: CalcCommands.xcu
msgctxt ""
@@ -9167,7 +9167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Comment"
-msgstr "Elimina commento"
+msgstr "~Elimina commento"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9176,7 +9176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete ~All Comments"
-msgstr "Elimina tutti i commenti"
+msgstr "Elimina ~tutti i commenti"
#: DrawImpressCommands.xcu
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index 92762d0a417..adce830361b 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ 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-12-02 21:54+0000\n"
+"PO-Revision-Date: 2017-02-16 17:19+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -12,9 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1480715657.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487265585.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -30504,13 +30504,12 @@ msgid "Parameters:"
msgstr "Parametri:"
#: 03120302.xhp
-#, fuzzy
msgctxt ""
"03120302.xhp\n"
"par_id3153193\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Izteiksme1, Izteiksme2:</emph> jebkuras izteiksmes, kuras jūs vēlaties salīdzināt."
+msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pārveidot."
#: 03120302.xhp
msgctxt ""
@@ -31449,13 +31448,12 @@ msgid "Parameters:"
msgstr "Parametri:"
#: 03120310.xhp
-#, fuzzy
msgctxt ""
"03120310.xhp\n"
"par_id3150791\n"
"help.text"
msgid "<emph>Text:</emph> Any string expression that you want to convert."
-msgstr "<emph>Izteiksme1, Izteiksme2:</emph> jebkuras izteiksmes, kuras jūs vēlaties salīdzināt."
+msgstr "<emph>Teksts:</emph> jebkura virknes izteiksme, kuru jūs vēlaties pārveidot."
#: 03120310.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index f1114700e4d..bfa454f49af 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/helpcontent2/source/text/shared/01.po
@@ -4,8 +4,8 @@ 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-12-27 21:50+0100\n"
-"PO-Revision-Date: 2016-12-25 07:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-02-16 17:15+0000\n"
+"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1482649912.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1487265337.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -5953,13 +5953,12 @@ msgid "Redo"
msgstr "Atatsaukt"
#: 02020000.xhp
-#, fuzzy
msgctxt ""
"02020000.xhp\n"
"bm_id3149991\n"
"help.text"
msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
-msgstr "<bookmark_value>atsaukšana;rediģēšana</bookmark_value><bookmark_value>rediģēšana;atsaukšana</bookmark_value>"
+msgstr "<bookmark_value>atjaunošana;rediģēšana</bookmark_value><bookmark_value>atatsaukšanas komanda</bookmark_value>"
#: 02020000.xhp
msgctxt ""
diff --git a/source/nb/formula/source/core/resource.po b/source/nb/formula/source/core/resource.po
index ff18186cee5..6fc9781ff84 100644
--- a/source/nb/formula/source/core/resource.po
+++ b/source/nb/formula/source/core/resource.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-01-26 17:29+0100\n"
+"POT-Creation-Date: 2017-02-20 13:26+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"
@@ -65,7 +65,7 @@ msgctxt ""
"SC_OPCODE_TABLE_REF_ITEM_HEADERS\n"
"string.text"
msgid "#Headers"
-msgstr "#Overskrifter "
+msgstr "[Overskrifter] "
#: core_resource.src
msgctxt ""
diff --git a/source/nl/formula/source/core/resource.po b/source/nl/formula/source/core/resource.po
index a8c2ae50756..179e3d27945 100644
--- a/source/nl/formula/source/core/resource.po
+++ b/source/nl/formula/source/core/resource.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-01-10 21:25+0100\n"
+"POT-Creation-Date: 2017-02-20 13:26+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"
@@ -713,7 +713,7 @@ msgctxt ""
"SC_OPCODE_TRIM\n"
"string.text"
msgid "TRIM"
-msgstr "BIJKNIPPEN"
+msgstr "BIJSNIJDEN"
#: core_resource.src
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index 439bc785688..0fdacd252a0 100644
--- a/source/nl/helpcontent2/source/text/scalc/01.po
+++ b/source/nl/helpcontent2/source/text/scalc/01.po