/* -*- 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 // DrawContact section std::unique_ptr E3dLatheObj::CreateObjectSpecificViewContact() { return std::make_unique(*this); } std::unique_ptr E3dLatheObj::CreateObjectSpecificProperties() { return std::make_unique(*this); } // Constructor from 3D polygon, scale is the conversion factor for the coordinates E3dLatheObj::E3dLatheObj( SdrModel& rSdrModel, const E3dDefaultAttributes& rDefault, const basegfx::B2DPolyPolygon& rPoly2D) : E3dCompoundObject(rSdrModel), maPolyPoly2D(rPoly2D) { // since the old class PolyPolygon3D did mirror the given PolyPolygons in Y, do the same here basegfx::B2DHomMatrix aMirrorY; aMirrorY.scale(1.0, -1.0); maPolyPoly2D.transform(aMirrorY); // Set Defaults SetDefaultAttributes(rDefault); // Superfluous items removed, in particular to prevent duplicate // start and end points maPolyPoly2D.removeDoublePoints(); if(maPolyPoly2D.count()) { const basegfx::B2DPolygon rPoly(maPolyPoly2D.getB2DPolygon(0)); sal_uInt32 nSegCnt(rPoly.count()); if(nSegCnt && !rPoly.isClosed()) { nSegCnt -= 1; } GetProperties().SetObjectItemDirect(makeSvx3DVerticalSegmentsItem(nSegCnt)); } } E3dLatheObj::E3dLatheObj(SdrModel& rSdrModel) : E3dCompoundObject(rSdrModel) { // Set Defaults const E3dDefaultAttributes aDefault; SetDefaultAttributes(aDefault); } E3dLatheObj::E3dLatheObj(SdrModel& rSdrModel, E3dLatheObj const & rSource) : E3dCompoundObject(rSdrModel, rSource) { // Set Defaults const E3dDefaultAttributes aDefault; SetDefaultAttributes(aDefault); maPolyPoly2D = rSource.maPolyPoly2D; } E3dLatheObj::~E3dLatheObj() { } void E3dLatheObj::SetDefaultAttributes(const E3dDefaultAttributes& rDefault) { GetProperties().SetObjectItemDirect(Svx3DSmoothNormalsItem(rDefault.GetDefaultLatheSmoothed())); GetProperties().SetObjectItemDirect(Svx3DSmoothLidsItem(rDefault.GetDefaultLatheSmoothFrontBack())); GetProperties().SetObjectItemDirect(Svx3DCharacterModeItem(rDefault.GetDefaultLatheCharacterMode())); GetProperties().SetObjectItemDirect(Svx3DCloseFrontItem(rDefault.GetDefaultLatheCloseFront())); GetProperties().SetObjectItemDirect(Svx3DCloseBackItem(rDefault.GetDefaultLatheCloseBack())); } SdrObjKind E3dLatheObj::GetObjIdentifier() const { return SdrObjKind::E3D_Lathe; } E3dLatheObj* E3dLatheObj::CloneSdrObject(SdrModel& rTargetModel) const { return new E3dLatheObj(rTargetModel, *this); } // Convert the object to group object consisting of n polygons SdrObjectUniquePtr E3dLatheObj::DoConvertToPolyObj(bool /*bBezier*/, bool /*bAddText*/) const { return nullptr; } // Set Local parameters set to re-create geometry void E3dLatheObj::SetPolyPoly2D(const basegfx::B2DPolyPolygon& rNew) { if(maPolyPoly2D == rNew) return; maPolyPoly2D = rNew; maPolyPoly2D.removeDoublePoints(); if(maPolyPoly2D.count()) { const basegfx::B2DPolygon rPoly(maPolyPoly2D.getB2DPolygon(0)); sal_uInt32 nSegCnt(rPoly.count()); if(nSegCnt && !rPoly.isClosed()) { nSegCnt -= 1; } GetProperties().SetObjectItemDirect(makeSvx3DVerticalSegmentsItem(nSegCnt)); } ActionChanged(); } // Get the name of the object (singular) OUString E3dLatheObj::TakeObjNameSingul() const { OUString sName(SvxResId(STR_ObjNameSingulLathe3d)); OUString aName(GetName()); if (!aName.isEmpty()) { sName += " '" + aName + "'"; } return sName; } // Get the name of the object (plural) OUString E3dLatheObj::TakeObjNamePlural() const { return SvxResId(STR_ObjNamePluralLathe3d); } bool E3dLatheObj::IsBreakObjPossible() { return true; } std::unique_ptr E3dLatheObj::GetBreakObj() { // create PathObj basegfx::B3DPolyPolygon aLathePoly3D(basegfx::utils::createB3DPolyPolygonFromB2DPolyPolygon(maPolyPoly2D)); basegfx::B2DPolyPolygon aTransPoly(TransformToScreenCoor(aLathePoly3D)); std::unique_ptr pPathObj(new SdrPathObj(getSdrModelFromSdrObject(), SdrObjKind::PolyLine, aTransPoly)); // Set Attribute SfxItemSet aSet(GetObjectItemSet()); // Enable lines to guarantee that the object becomes visible aSet.Put(XLineStyleItem(css::drawing::LineStyle_SOLID)); pPathObj->SetMergedItemSet(aSet); return std::unique_ptr(pPathObj.release()); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -4-2 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-04-18 13:06:51 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-04-18 14:53:37 +0200
commit769636b6ac5701c4378d685440fed2e1f968f4bc (patch)
treec5bba49865ce136d8dcbb52c86f170662d8c5a9f
parent16da308b0923a109ad7f1ff59d804276f8bc7c90 (diff)
Change-Id: Id445b2ee9d0818a5af2de07f08890883065a4399
-rw-r--r--source/af/cui/uiconfig/ui.po10
-rw-r--r--source/af/sfx2/source/dialog.po30
-rw-r--r--source/af/sfx2/uiconfig/ui.po10
-rw-r--r--source/af/svtools/source/dialogs.po18
-rw-r--r--source/af/svtools/source/misc.po15
-rw-r--r--source/af/svx/source/stbctrls.po14
-rw-r--r--source/af/svx/uiconfig/ui.po8
-rw-r--r--source/am/cui/uiconfig/ui.po14
-rw-r--r--source/am/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/am/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/am/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/am/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/am/helpcontent2/source/text/shared/autokorr.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/guide.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/am/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/am/helpcontent2/source/text/swriter.po8
-rw-r--r--source/am/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/am/sc/uiconfig/scalc/ui.po7
-rw-r--r--source/am/sfx2/source/dialog.po28
-rw-r--r--source/am/sfx2/uiconfig/ui.po15
-rw-r--r--source/am/svtools/source/dialogs.po12
-rw-r--r--source/am/svtools/source/misc.po11
-rw-r--r--source/am/svx/source/stbctrls.po12
-rw-r--r--source/am/svx/uiconfig/ui.po20
-rw-r--r--source/ar/cui/uiconfig/ui.po107
-rw-r--r--source/ar/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ar/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ar/sfx2/source/dialog.po28
-rw-r--r--source/ar/sfx2/uiconfig/ui.po15
-rw-r--r--source/ar/svtools/source/dialogs.po12
-rw-r--r--source/ar/svtools/source/misc.po13
-rw-r--r--source/ar/svx/source/stbctrls.po12
-rw-r--r--source/ar/svx/uiconfig/ui.po14
-rw-r--r--source/ar/sw/uiconfig/swriter/ui.po36
-rw-r--r--source/as/cui/uiconfig/ui.po13
-rw-r--r--source/as/sfx2/source/dialog.po30
-rw-r--r--source/as/sfx2/uiconfig/ui.po10
-rw-r--r--source/as/svtools/source/dialogs.po14
-rw-r--r--source/as/svtools/source/misc.po15
-rw-r--r--source/as/svx/source/stbctrls.po14
-rw-r--r--source/as/svx/uiconfig/ui.po8
-rw-r--r--source/ast/cui/uiconfig/ui.po13
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ast/sfx2/source/dialog.po30
-rw-r--r--source/ast/sfx2/uiconfig/ui.po20
-rw-r--r--source/ast/svtools/source/dialogs.po14
-rw-r--r--source/ast/svtools/source/misc.po15
-rw-r--r--source/ast/svx/source/stbctrls.po14
-rw-r--r--source/ast/svx/uiconfig/ui.po8
-rw-r--r--source/be/basctl/source/basicide.po7
-rw-r--r--source/be/basctl/uiconfig/basicide/ui.po11
-rw-r--r--source/be/basic/source/classes.po128
-rw-r--r--source/be/chart2/source/controller/dialogs.po36
-rw-r--r--source/be/chart2/uiconfig/ui.po287
-rw-r--r--source/be/cui/source/customize.po20
-rw-r--r--source/be/cui/source/dialogs.po26
-rw-r--r--source/be/cui/source/options.po94
-rw-r--r--source/be/cui/uiconfig/ui.po42
-rw-r--r--source/be/dbaccess/source/ui/dlg.po9
-rw-r--r--source/be/dbaccess/uiconfig/ui.po13
-rw-r--r--source/be/editeng/source/editeng.po15
-rw-r--r--source/be/editeng/source/misc.po9
-rw-r--r--source/be/extensions/source/propctrlr.po10
-rw-r--r--source/be/extras/source/autocorr/emoji.po10
-rw-r--r--source/be/filter/source/config/fragments/filters.po31
-rw-r--r--source/be/filter/source/config/fragments/types.po13
-rw-r--r--source/be/fpicker/uiconfig/ui.po10
-rw-r--r--source/be/framework/source/classes.po10
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po60
-rw-r--r--source/be/readlicense_oo/docs.po5
-rw-r--r--source/be/reportdesign/uiconfig/dbreport/ui.po10
-rw-r--r--source/be/sc/source/ui/src.po5
-rw-r--r--source/be/sc/uiconfig/scalc/ui.po21
-rw-r--r--source/be/scp2/source/ooo.po10
-rw-r--r--source/be/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/be/sfx2/source/appl.po5
-rw-r--r--source/be/sfx2/source/dialog.po30
-rw-r--r--source/be/sfx2/source/doc.po11
-rw-r--r--source/be/sfx2/uiconfig/ui.po81
-rw-r--r--source/be/svl/source/misc.po12
-rw-r--r--source/be/svtools/source/dialogs.po14
-rw-r--r--source/be/svtools/source/misc.po13
-rw-r--r--source/be/svx/source/stbctrls.po14
-rw-r--r--source/be/svx/uiconfig/ui.po20
-rw-r--r--source/be/sw/uiconfig/swriter/ui.po21
-rw-r--r--source/be/swext/mediawiki/help.po6
-rw-r--r--source/be/sysui/desktop/share.po9
-rw-r--r--source/be/uui/source.po30
-rw-r--r--source/be/uui/uiconfig/ui.po59
-rw-r--r--source/be/vcl/source/src.po10
-rw-r--r--source/be/wizards/source/euro.po10
-rw-r--r--source/be/wizards/source/formwizard.po13
-rw-r--r--source/be/wizards/source/importwizard.po15
-rw-r--r--source/bg/cui/uiconfig/ui.po10
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bg/sfx2/source/dialog.po28
-rw-r--r--source/bg/sfx2/uiconfig/ui.po10
-rw-r--r--source/bg/svtools/source/dialogs.po16
-rw-r--r--source/bg/svtools/source/misc.po15
-rw-r--r--source/bg/svx/source/dialog.po42
-rw-r--r--source/bg/svx/source/stbctrls.po12
-rw-r--r--source/bg/svx/uiconfig/ui.po10
-rw-r--r--source/bn-IN/cui/uiconfig/ui.po13
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bn-IN/sfx2/source/dialog.po30
-rw-r--r--source/bn-IN/sfx2/uiconfig/ui.po20
-rw-r--r--source/bn-IN/svtools/source/dialogs.po14
-rw-r--r--source/bn-IN/svtools/source/misc.po15
-rw-r--r--source/bn-IN/svx/source/stbctrls.po14
-rw-r--r--source/bn-IN/svx/uiconfig/ui.po8
-rw-r--r--source/bn/cui/uiconfig/ui.po10
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bn/sfx2/source/dialog.po30
-rw-r--r--source/bn/sfx2/uiconfig/ui.po10
-rw-r--r--source/bn/svtools/source/dialogs.po14
-rw-r--r--source/bn/svtools/source/misc.po15
-rw-r--r--source/bn/svx/source/stbctrls.po14
-rw-r--r--source/bn/svx/uiconfig/ui.po8
-rw-r--r--source/bo/cui/uiconfig/ui.po10
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bo/sfx2/source/dialog.po30
-rw-r--r--source/bo/sfx2/uiconfig/ui.po10
-rw-r--r--source/bo/svtools/source/dialogs.po14
-rw-r--r--source/bo/svtools/source/misc.po15
-rw-r--r--source/bo/svx/source/stbctrls.po14
-rw-r--r--source/bo/svx/uiconfig/ui.po8
-rw-r--r--source/br/cui/uiconfig/ui.po44
-rw-r--r--source/br/sfx2/source/dialog.po30
-rw-r--r--source/br/sfx2/uiconfig/ui.po19
-rw-r--r--source/br/svtools/source/dialogs.po12
-rw-r--r--source/br/svtools/source/misc.po15
-rw-r--r--source/br/svx/source/stbctrls.po14
-rw-r--r--source/br/svx/uiconfig/ui.po8
-rw-r--r--source/brx/cui/uiconfig/ui.po10
-rw-r--r--source/brx/sfx2/source/dialog.po30
-rw-r--r--source/brx/sfx2/uiconfig/ui.po10
-rw-r--r--source/brx/svtools/source/dialogs.po14
-rw-r--r--source/brx/svtools/source/misc.po15
-rw-r--r--source/brx/svx/source/stbctrls.po14
-rw-r--r--source/brx/svx/uiconfig/ui.po8
-rw-r--r--source/bs/cui/uiconfig/ui.po13
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/bs/sfx2/source/dialog.po30
-rw-r--r--source/bs/sfx2/uiconfig/ui.po20
-rw-r--r--source/bs/svtools/source/dialogs.po14
-rw-r--r--source/bs/svtools/source/misc.po15
-rw-r--r--source/bs/svx/source/stbctrls.po14
-rw-r--r--source/bs/svx/uiconfig/ui.po8
-rw-r--r--source/ca-valencia/cui/uiconfig/ui.po12
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ca-valencia/sfx2/source/dialog.po30
-rw-r--r--source/ca-valencia/sfx2/uiconfig/ui.po19
-rw-r--r--source/ca-valencia/svtools/source/dialogs.po12
-rw-r--r--source/ca-valencia/svtools/source/misc.po15
-rw-r--r--source/ca-valencia/svx/source/stbctrls.po14
-rw-r--r--source/ca-valencia/svx/uiconfig/ui.po8
-rw-r--r--source/ca/cui/uiconfig/ui.po10
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ca/sd/source/core.po14
-rw-r--r--source/ca/sd/source/ui/app.po24
-rw-r--r--source/ca/sfx2/source/dialog.po30
-rw-r--r--source/ca/sfx2/uiconfig/ui.po10
-rw-r--r--source/ca/svtools/source/dialogs.po16
-rw-r--r--source/ca/svtools/source/misc.po15
-rw-r--r--source/ca/svx/source/dialog.po32
-rw-r--r--source/ca/svx/source/stbctrls.po12
-rw-r--r--source/ca/svx/uiconfig/ui.po22
-rw-r--r--source/cs/cui/uiconfig/ui.po8
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/cs/sfx2/source/dialog.po28
-rw-r--r--source/cs/sfx2/uiconfig/ui.po15
-rw-r--r--source/cs/svtools/source/dialogs.po12
-rw-r--r--source/cs/svtools/source/misc.po13
-rw-r--r--source/cs/svx/source/stbctrls.po12
-rw-r--r--source/cs/svx/uiconfig/ui.po14
-rw-r--r--source/cy/cui/uiconfig/ui.po16
-rw-r--r--source/cy/sfx2/source/dialog.po28
-rw-r--r--source/cy/sfx2/uiconfig/ui.po15
-rw-r--r--source/cy/svtools/source/dialogs.po12
-rw-r--r--source/cy/svtools/source/misc.po13
-rw-r--r--source/cy/svx/source/stbctrls.po14
-rw-r--r--source/cy/svx/uiconfig/ui.po14
-rw-r--r--source/da/cui/uiconfig/ui.po10
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/da/sfx2/source/dialog.po26
-rw-r--r--source/da/sfx2/uiconfig/ui.po13
-rw-r--r--source/da/svtools/source/dialogs.po12
-rw-r--r--source/da/svtools/source/misc.po11
-rw-r--r--source/da/svx/source/stbctrls.po14
-rw-r--r--source/da/svx/uiconfig/ui.po14
-rw-r--r--source/de/cui/uiconfig/ui.po14
-rw-r--r--source/de/filter/uiconfig/ui.po10
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po78
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po20
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po32
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/de/helpcontent2/source/text/simpress.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/de/helpcontent2/source/text/smath.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po20
-rw-r--r--source/de/helpcontent2/source/text/smath/02.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po58
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po12
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/de/sc/source/ui/src.po12
-rw-r--r--source/de/scaddins/source/analysis.po16
-rw-r--r--source/de/scp2/source/ooo.po12
-rw-r--r--source/de/sfx2/source/dialog.po30
-rw-r--r--source/de/sfx2/uiconfig/ui.po10
-rw-r--r--source/de/svtools/source/dialogs.po16
-rw-r--r--source/de/svtools/source/misc.po17
-rw-r--r--source/de/svx/source/items.po26
-rw-r--r--source/de/svx/source/stbctrls.po14
-rw-r--r--source/de/svx/uiconfig/ui.po14
-rw-r--r--source/de/uui/uiconfig/ui.po8
-rw-r--r--source/de/vcl/source/src.po8
-rw-r--r--source/dgo/cui/uiconfig/ui.po10
-rw-r--r--source/dgo/sfx2/source/dialog.po30
-rw-r--r--source/dgo/sfx2/uiconfig/ui.po10
-rw-r--r--source/dgo/svtools/source/dialogs.po14
-rw-r--r--source/dgo/svtools/source/misc.po15
-rw-r--r--source/dgo/svx/source/stbctrls.po14
-rw-r--r--source/dgo/svx/uiconfig/ui.po8
-rw-r--r--source/dz/cui/uiconfig/ui.po10
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/dz/sfx2/source/dialog.po30
-rw-r--r--source/dz/sfx2/uiconfig/ui.po10
-rw-r--r--source/dz/svtools/source/dialogs.po14
-rw-r--r--source/dz/svtools/source/misc.po15
-rw-r--r--source/dz/svx/source/stbctrls.po14
-rw-r--r--source/dz/svx/uiconfig/ui.po8
-rw-r--r--source/el/cui/uiconfig/ui.po10
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/el/sfx2/source/dialog.po32
-rw-r--r--source/el/sfx2/uiconfig/ui.po12
-rw-r--r--source/el/svtools/source/dialogs.po16
-rw-r--r--source/el/svtools/source/misc.po17
-rw-r--r--source/el/svx/source/stbctrls.po16
-rw-r--r--source/el/svx/uiconfig/ui.po16
-rw-r--r--source/en-GB/cui/uiconfig/ui.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/04.po11
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/en-GB/scaddins/source/analysis.po22
-rw-r--r--source/en-GB/sfx2/source/dialog.po32
-rw-r--r--source/en-GB/sfx2/uiconfig/ui.po14
-rw-r--r--source/en-GB/svtools/source/dialogs.po16
-rw-r--r--source/en-GB/svtools/source/misc.po17
-rw-r--r--source/en-GB/svx/source/stbctrls.po14
-rw-r--r--source/en-GB/svx/uiconfig/ui.po16
-rw-r--r--source/en-ZA/cui/uiconfig/ui.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/en-ZA/sfx2/source/dialog.po30
-rw-r--r--source/en-ZA/sfx2/uiconfig/ui.po10
-rw-r--r--source/en-ZA/svtools/source/dialogs.po14
-rw-r--r--source/en-ZA/svtools/source/misc.po11
-rw-r--r--source/en-ZA/svx/source/stbctrls.po14
-rw-r--r--source/en-ZA/svx/uiconfig/ui.po8
-rw-r--r--source/eo/cui/uiconfig/ui.po8
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/eo/sfx2/source/dialog.po28
-rw-r--r--source/eo/sfx2/uiconfig/ui.po15
-rw-r--r--source/eo/svtools/source/dialogs.po12
-rw-r--r--source/eo/svtools/source/misc.po11
-rw-r--r--source/eo/svx/source/stbctrls.po10
-rw-r--r--source/eo/svx/uiconfig/ui.po14
-rw-r--r--source/es/cui/source/dialogs.po8
-rw-r--r--source/es/cui/uiconfig/ui.po8
-rw-r--r--source/es/desktop/source/deployment/registry/script.po11
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/es/readlicense_oo/docs.po6
-rw-r--r--source/es/sc/source/ui/StatisticsDialogs.po8
-rw-r--r--source/es/sc/source/ui/src.po8
-rw-r--r--source/es/sc/uiconfig/scalc/ui.po54
-rw-r--r--source/es/sfx2/source/dialog.po28
-rw-r--r--source/es/sfx2/uiconfig/ui.po15
-rw-r--r--source/es/svtools/source/dialogs.po12
-rw-r--r--source/es/svtools/source/misc.po13
-rw-r--r--source/es/svx/source/stbctrls.po12
-rw-r--r--source/es/svx/uiconfig/ui.po14
-rw-r--r--source/es/sw/source/ui/utlui.po6
-rw-r--r--source/et/cui/uiconfig/ui.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/et/sfx2/source/dialog.po28
-rw-r--r--source/et/sfx2/uiconfig/ui.po15
-rw-r--r--source/et/svtools/source/dialogs.po18
-rw-r--r--source/et/svtools/source/misc.po13
-rw-r--r--source/et/svx/source/stbctrls.po12
-rw-r--r--source/et/svx/uiconfig/ui.po14
-rw-r--r--source/eu/cui/uiconfig/ui.po8
-rw-r--r--source/eu/formula/source/core/resource.po22
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po224
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po54
-rw-r--r--source/eu/sc/source/ui/src.po8
-rw-r--r--source/eu/sfx2/source/dialog.po28
-rw-r--r--source/eu/sfx2/uiconfig/ui.po15
-rw-r--r--source/eu/svtools/source/dialogs.po16
-rw-r--r--source/eu/svtools/source/misc.po13
-rw-r--r--source/eu/svx/source/stbctrls.po12
-rw-r--r--source/eu/svx/uiconfig/ui.po14
-rw-r--r--source/fa/cui/uiconfig/ui.po10
-rw-r--r--source/fa/sfx2/source/dialog.po32
-rw-r--r--source/fa/sfx2/uiconfig/ui.po10
-rw-r--r--source/fa/svtools/source/dialogs.po14
-rw-r--r--source/fa/svtools/source/misc.po17
-rw-r--r--source/fa/svx/source/stbctrls.po16
-rw-r--r--source/fa/svx/uiconfig/ui.po8
-rw-r--r--source/fi/cui/uiconfig/ui.po8
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/fi/sfx2/source/dialog.po28
-rw-r--r--source/fi/sfx2/uiconfig/ui.po15
-rw-r--r--source/fi/svtools/source/dialogs.po12
-rw-r--r--source/fi/svtools/source/misc.po13
-rw-r--r--source/fi/svx/source/stbctrls.po12
-rw-r--r--source/fi/svx/uiconfig/ui.po14
-rw-r--r--source/fr/cui/uiconfig/ui.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/fr/sfx2/source/dialog.po34
-rw-r--r--source/fr/sfx2/uiconfig/ui.po14
-rw-r--r--source/fr/svtools/source/dialogs.po16
-rw-r--r--source/fr/svtools/source/misc.po19
-rw-r--r--source/fr/svx/source/stbctrls.po18
-rw-r--r--source/fr/svx/uiconfig/ui.po14
-rw-r--r--source/ga/cui/uiconfig/ui.po13
-rw-r--r--source/ga/sfx2/source/dialog.po30
-rw-r--r--source/ga/sfx2/uiconfig/ui.po20
-rw-r--r--source/ga/svtools/source/dialogs.po18
-rw-r--r--source/ga/svtools/source/misc.po15
-rw-r--r--source/ga/svx/source/stbctrls.po14
-rw-r--r--source/ga/svx/uiconfig/ui.po8
-rw-r--r--source/gd/cui/uiconfig/ui.po8
-rw-r--r--source/gd/sfx2/source/dialog.po28
-rw-r--r--source/gd/sfx2/uiconfig/ui.po13
-rw-r--r--source/gd/svtools/source/dialogs.po12
-rw-r--r--source/gd/svtools/source/misc.po11
-rw-r--r--source/gd/svx/source/stbctrls.po16
-rw-r--r--source/gd/svx/uiconfig/ui.po10
-rw-r--r--source/gl/cui/uiconfig/ui.po8
-rw-r--r--source/gl/desktop/source/deployment/registry/script.po11
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/02.po60
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/gl/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po62
-rw-r--r--source/gl/sfx2/source/dialog.po28
-rw-r--r--source/gl/sfx2/uiconfig/ui.po15
-rw-r--r--source/gl/svtools/source/dialogs.po12
-rw-r--r--source/gl/svtools/source/misc.po13
-rw-r--r--source/gl/svx/source/stbctrls.po12
-rw-r--r--source/gl/svx/uiconfig/ui.po14
-rw-r--r--source/gu/cui/uiconfig/ui.po9
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/gu/sfx2/source/dialog.po30
-rw-r--r--source/gu/sfx2/uiconfig/ui.po6
-rw-r--r--source/gu/svtools/source/dialogs.po18
-rw-r--r--source/gu/svtools/source/misc.po15
-rw-r--r--source/gu/svx/source/stbctrls.po14
-rw-r--r--source/gu/svx/uiconfig/ui.po8
-rw-r--r--source/gug/cui/uiconfig/ui.po8
-rw-r--r--source/gug/sfx2/source/dialog.po28
-rw-r--r--source/gug/sfx2/uiconfig/ui.po6
-rw-r--r--source/gug/svtools/source/dialogs.po12
-rw-r--r--source/gug/svtools/source/misc.po15
-rw-r--r--source/gug/svx/source/stbctrls.po14
-rw-r--r--source/gug/svx/uiconfig/ui.po10
-rw-r--r--source/he/cui/uiconfig/ui.po8
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/he/sfx2/source/dialog.po28
-rw-r--r--source/he/sfx2/uiconfig/ui.po16
-rw-r--r--source/he/svtools/source/dialogs.po18
-rw-r--r--source/he/svtools/source/misc.po13
-rw-r--r--source/he/svx/source/stbctrls.po16
-rw-r--r--source/he/svx/uiconfig/ui.po10
-rw-r--r--source/hi/cui/uiconfig/ui.po10
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hi/sfx2/source/dialog.po30
-rw-r--r--source/hi/sfx2/uiconfig/ui.po10
-rw-r--r--source/hi/svtools/source/dialogs.po18
-rw-r--r--source/hi/svtools/source/misc.po15
-rw-r--r--source/hi/svx/source/stbctrls.po14
-rw-r--r--source/hi/svx/uiconfig/ui.po8
-rw-r--r--source/hr/chart2/source/controller/dialogs.po10
-rw-r--r--source/hr/cui/uiconfig/ui.po24
-rw-r--r--source/hr/dbaccess/source/ui/browser.po8
-rw-r--r--source/hr/dbaccess/source/ui/dlg.po8
-rw-r--r--source/hr/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/hr/framework/source/classes.po8
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/hr/sc/source/ui/miscdlgs.po12
-rw-r--r--source/hr/sc/source/ui/src.po8
-rw-r--r--source/hr/scp2/source/draw.po12
-rw-r--r--source/hr/scp2/source/math.po16
-rw-r--r--source/hr/sd/source/ui/app.po8
-rw-r--r--source/hr/sfx2/source/dialog.po32
-rw-r--r--source/hr/sfx2/uiconfig/ui.po21
-rw-r--r--source/hr/starmath/uiconfig/smath/ui.po10
-rw-r--r--source/hr/svtools/source/dialogs.po12
-rw-r--r--source/hr/svtools/source/misc.po13
-rw-r--r--source/hr/svx/source/form.po6
-rw-r--r--source/hr/svx/source/stbctrls.po12
-rw-r--r--source/hr/svx/uiconfig/ui.po26
-rw-r--r--source/hr/sw/source/ui/app.po10
-rw-r--r--source/hr/sw/source/ui/dbui.po10
-rw-r--r--source/hr/sw/source/ui/index.po6
-rw-r--r--source/hr/sw/source/ui/shells.po10
-rw-r--r--source/hr/sw/source/ui/utlui.po6
-rw-r--r--source/hr/sw/source/uibase/misc.po12
-rw-r--r--source/hr/sw/uiconfig/swriter/ui.po34
-rw-r--r--source/hr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po14
-rw-r--r--source/hu/cui/uiconfig/ui.po8
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/hu/sfx2/source/dialog.po28
-rw-r--r--source/hu/sfx2/uiconfig/ui.po15
-rw-r--r--source/hu/svtools/source/dialogs.po12
-rw-r--r--source/hu/svtools/source/misc.po13
-rw-r--r--source/hu/svx/source/stbctrls.po12
-rw-r--r--source/hu/svx/uiconfig/ui.po14
-rw-r--r--source/id/cui/uiconfig/ui.po8
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/id/sfx2/source/dialog.po28
-rw-r--r--source/id/sfx2/uiconfig/ui.po15
-rw-r--r--source/id/svtools/source/dialogs.po12
-rw-r--r--source/id/svtools/source/misc.po11
-rw-r--r--source/id/svx/source/stbctrls.po12
-rw-r--r--source/id/svx/uiconfig/ui.po14
-rw-r--r--source/is/cui/uiconfig/ui.po8
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/is/sfx2/source/dialog.po28
-rw-r--r--source/is/sfx2/uiconfig/ui.po15
-rw-r--r--source/is/svtools/source/dialogs.po12
-rw-r--r--source/is/svtools/source/misc.po13
-rw-r--r--source/is/svx/source/stbctrls.po12
-rw-r--r--source/is/svx/uiconfig/ui.po14
-rw-r--r--source/it/chart2/uiconfig/ui.po8
-rw-r--r--source/it/cui/uiconfig/ui.po16
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/it/helpcontent2/source/text/scalc/02.po6
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/it/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po16
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/it/reportdesign/source/ui/inspection.po10
-rw-r--r--source/it/sfx2/source/dialog.po28
-rw-r--r--source/it/sfx2/uiconfig/ui.po15
-rw-r--r--source/it/svtools/source/dialogs.po12
-rw-r--r--source/it/svtools/source/misc.po13
-rw-r--r--source/it/svtools/uiconfig/ui.po6
-rw-r--r--source/it/svx/source/stbctrls.po12
-rw-r--r--source/it/svx/uiconfig/ui.po14
-rw-r--r--source/ja/cui/uiconfig/ui.po8
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ja/sd/source/ui/app.po10
-rw-r--r--source/ja/sd/uiconfig/simpress/ui.po18
-rw-r--r--source/ja/sfx2/source/dialog.po28
-rw-r--r--source/ja/sfx2/uiconfig/ui.po8
-rw-r--r--source/ja/svtools/source/dialogs.po12
-rw-r--r--source/ja/svtools/source/misc.po17
-rw-r--r--source/ja/svx/source/stbctrls.po16
-rw-r--r--source/ja/svx/uiconfig/ui.po12
-rw-r--r--source/ka/cui/uiconfig/ui.po10
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ka/sfx2/source/dialog.po28
-rw-r--r--source/ka/sfx2/uiconfig/ui.po8
-rw-r--r--source/ka/svtools/source/dialogs.po18
-rw-r--r--source/ka/svtools/source/misc.po11
-rw-r--r--source/ka/svx/source/stbctrls.po14
-rw-r--r--source/ka/svx/uiconfig/ui.po8
-rw-r--r--source/kk/cui/uiconfig/ui.po10
-rw-r--r--source/kk/librelogo/source/pythonpath.po13
-rw-r--r--source/kk/sfx2/source/dialog.po30
-rw-r--r--source/kk/sfx2/uiconfig/ui.po10
-rw-r--r--source/kk/svtools/source/dialogs.po16
-rw-r--r--source/kk/svtools/source/misc.po15
-rw-r--r--source/kk/svx/source/stbctrls.po14
-rw-r--r--source/kk/svx/uiconfig/ui.po14
-rw-r--r--source/km/cui/uiconfig/ui.po13
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/km/sfx2/source/dialog.po28
-rw-r--r--source/km/sfx2/uiconfig/ui.po8
-rw-r--r--source/km/svtools/source/dialogs.po18
-rw-r--r--source/km/svtools/source/misc.po13
-rw-r--r--source/km/svx/source/stbctrls.po14
-rw-r--r--source/km/svx/uiconfig/ui.po8
-rw-r--r--source/kmr-Latn/cui/uiconfig/ui.po10
-rw-r--r--source/kmr-Latn/sfx2/source/dialog.po30
-rw-r--r--source/kmr-Latn/sfx2/uiconfig/ui.po8
-rw-r--r--source/kmr-Latn/svtools/source/dialogs.po18
-rw-r--r--source/kmr-Latn/svtools/source/misc.po15
-rw-r--r--source/kmr-Latn/svx/source/stbctrls.po14
-rw-r--r--source/kmr-Latn/svx/uiconfig/ui.po8
-rw-r--r--source/kn/cui/uiconfig/ui.po13
-rw-r--r--source/kn/sfx2/source/dialog.po30
-rw-r--r--source/kn/sfx2/uiconfig/ui.po18
-rw-r--r--source/kn/svtools/source/dialogs.po18
-rw-r--r--source/kn/svtools/source/misc.po13
-rw-r--r--source/kn/svx/source/stbctrls.po14
-rw-r--r--source/kn/svx/uiconfig/ui.po8
-rw-r--r--source/ko/cui/uiconfig/ui.po13
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ko/sfx2/source/dialog.po30
-rw-r--r--source/ko/sfx2/uiconfig/ui.po20
-rw-r--r--source/ko/svtools/source/dialogs.po18
-rw-r--r--source/ko/svtools/source/misc.po15
-rw-r--r--source/ko/svx/source/stbctrls.po14
-rw-r--r--source/ko/svx/uiconfig/ui.po8
-rw-r--r--source/kok/cui/uiconfig/ui.po10
-rw-r--r--source/kok/sfx2/source/dialog.po30
-rw-r--r--source/kok/sfx2/uiconfig/ui.po10
-rw-r--r--source/kok/svtools/source/dialogs.po18
-rw-r--r--source/kok/svtools/source/misc.po15
-rw-r--r--source/kok/svx/source/stbctrls.po14
-rw-r--r--source/kok/svx/uiconfig/ui.po8
-rw-r--r--source/ks/cui/uiconfig/ui.po10
-rw-r--r--source/ks/sfx2/source/dialog.po28
-rw-r--r--source/ks/sfx2/uiconfig/ui.po6
-rw-r--r--source/ks/svtools/source/dialogs.po18
-rw-r--r--source/ks/svtools/source/misc.po11
-rw-r--r--source/ks/svx/source/stbctrls.po14
-rw-r--r--source/ks/svx/uiconfig/ui.po8
-rw-r--r--source/lo/cui/uiconfig/ui.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/lo/sfx2/source/dialog.po26
-rw-r--r--source/lo/sfx2/uiconfig/ui.po8
-rw-r--r--source/lo/svtools/source/dialogs.po14
-rw-r--r--source/lo/svtools/source/misc.po11
-rw-r--r--source/lo/svx/source/stbctrls.po14
-rw-r--r--source/lo/svx/uiconfig/ui.po8
-rw-r--r--source/lt/cui/uiconfig/ui.po8
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lt/sfx2/source/dialog.po28
-rw-r--r--source/lt/sfx2/uiconfig/ui.po15
-rw-r--r--source/lt/shell/source/win32/shlxthandler/res.po14
-rw-r--r--source/lt/svtools/source/dialogs.po12
-rw-r--r--source/lt/svtools/source/misc.po13
-rw-r--r--source/lt/svx/source/stbctrls.po12
-rw-r--r--source/lt/svx/uiconfig/ui.po14
-rw-r--r--source/lv/cui/uiconfig/ui.po8
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/lv/sfx2/source/dialog.po28
-rw-r--r--source/lv/sfx2/uiconfig/ui.po15
-rw-r--r--source/lv/svtools/source/dialogs.po12
-rw-r--r--source/lv/svtools/source/misc.po13
-rw-r--r--source/lv/svx/source/stbctrls.po12
-rw-r--r--source/lv/svx/uiconfig/ui.po14
-rw-r--r--source/mai/cui/uiconfig/ui.po6
-rw-r--r--source/mai/sfx2/source/dialog.po26
-rw-r--r--source/mai/sfx2/uiconfig/ui.po8
-rw-r--r--source/mai/svtools/source/dialogs.po18
-rw-r--r--source/mai/svtools/source/misc.po11
-rw-r--r--source/mai/svx/source/stbctrls.po14
-rw-r--r--source/mai/svx/uiconfig/ui.po8
-rw-r--r--source/mk/cui/uiconfig/ui.po6
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/mk/sfx2/source/dialog.po28
-rw-r--r--source/mk/sfx2/uiconfig/ui.po8
-rw-r--r--source/mk/svtools/source/dialogs.po18
-rw-r--r--source/mk/svtools/source/misc.po13
-rw-r--r--source/mk/svx/source/stbctrls.po14
-rw-r--r--source/mk/svx/uiconfig/ui.po8
-rw-r--r--source/ml/cui/uiconfig/ui.po14
-rw-r--r--source/ml/sfx2/source/dialog.po28
-rw-r--r--source/ml/sfx2/uiconfig/ui.po8
-rw-r--r--source/ml/svtools/source/dialogs.po12
-rw-r--r--source/ml/svtools/source/misc.po15
-rw-r--r--source/ml/svx/source/stbctrls.po16
-rw-r--r--source/ml/svx/uiconfig/ui.po8
-rw-r--r--source/mn/cui/uiconfig/ui.po12
-rw-r--r--source/mn/sfx2/source/dialog.po26
-rw-r--r--source/mn/sfx2/uiconfig/ui.po6
-rw-r--r--source/mn/svtools/source/dialogs.po18
-rw-r--r--source/mn/svtools/source/misc.po13
-rw-r--r--source/mn/svx/source/stbctrls.po14
-rw-r--r--source/mn/svx/uiconfig/ui.po8
-rw-r--r--source/mni/cui/uiconfig/ui.po10
-rw-r--r--source/mni/sfx2/source/dialog.po28
-rw-r--r--source/mni/sfx2/uiconfig/ui.po8
-rw-r--r--source/mni/svtools/source/dialogs.po18
-rw-r--r--source/mni/svtools/source/misc.po11
-rw-r--r--source/mni/svx/source/stbctrls.po14
-rw-r--r--source/mni/svx/uiconfig/ui.po8
-rw-r--r--source/mr/cui/uiconfig/ui.po13
-rw-r--r--source/mr/sfx2/source/dialog.po28
-rw-r--r--source/mr/sfx2/uiconfig/ui.po8
-rw-r--r--source/mr/svtools/source/dialogs.po18
-rw-r--r--source/mr/svtools/source/misc.po13
-rw-r--r--source/mr/svx/source/stbctrls.po14
-rw-r--r--source/mr/svx/uiconfig/ui.po8
-rw-r--r--source/my/cui/uiconfig/ui.po10
-rw-r--r--source/my/sfx2/source/dialog.po28
-rw-r--r--source/my/sfx2/uiconfig/ui.po8
-rw-r--r--source/my/svtools/source/dialogs.po18
-rw-r--r--source/my/svtools/source/misc.po13
-rw-r--r--source/my/svx/source/stbctrls.po14
-rw-r--r--source/my/svx/uiconfig/ui.po8
-rw-r--r--source/nb/cui/uiconfig/ui.po10
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nb/sc/uiconfig/scalc/ui.po8
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po8
-rw-r--r--source/nb/sfx2/source/dialog.po30
-rw-r--r--source/nb/sfx2/uiconfig/ui.po10
-rw-r--r--source/nb/svtools/source/dialogs.po18
-rw-r--r--source/nb/svtools/source/misc.po15
-rw-r--r--source/nb/svx/source/stbctrls.po14
-rw-r--r--source/nb/svx/uiconfig/ui.po14
-rw-r--r--source/ne/cui/uiconfig/ui.po10
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ne/sfx2/source/dialog.po28
-rw-r--r--source/ne/sfx2/uiconfig/ui.po8
-rw-r--r--source/ne/svtools/source/dialogs.po18
-rw-r--r--source/ne/svtools/source/misc.po13
-rw-r--r--source/ne/svx/source/stbctrls.po14
-rw-r--r--source/ne/svx/uiconfig/ui.po8
-rw-r--r--source/nl/cui/uiconfig/ui.po12
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po14
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/nl/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nl/sc/source/ui/src.po8
-rw-r--r--source/nl/sc/uiconfig/scalc/ui.po6
-rw-r--r--source/nl/sfx2/source/dialog.po32
-rw-r--r--source/nl/sfx2/uiconfig/ui.po15
-rw-r--r--source/nl/svtools/source/dialogs.po18
-rw-r--r--source/nl/svtools/source/misc.po17
-rw-r--r--source/nl/svx/source/stbctrls.po12
-rw-r--r--source/nl/svx/uiconfig/ui.po16
-rw-r--r--source/nl/swext/mediawiki/help.po8
-rw-r--r--source/nn/cui/uiconfig/ui.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nn/sd/source/core.po14
-rw-r--r--source/nn/sfx2/source/dialog.po28
-rw-r--r--source/nn/sfx2/uiconfig/ui.po15
-rw-r--r--source/nn/svtools/source/dialogs.po12
-rw-r--r--source/nn/svtools/source/misc.po13
-rw-r--r--source/nn/svx/source/stbctrls.po12
-rw-r--r--source/nn/svx/uiconfig/ui.po14
-rw-r--r--source/nn/xmlsecurity/uiconfig/ui.po8
-rw-r--r--source/nr/cui/uiconfig/ui.po6
-rw-r--r--source/nr/sfx2/source/dialog.po26
-rw-r--r--source/nr/sfx2/uiconfig/ui.po8
-rw-r--r--source/nr/svtools/source/dialogs.po18
-rw-r--r--source/nr/svtools/source/misc.po13
-rw-r--r--source/nr/svx/source/stbctrls.po14
-rw-r--r--source/nr/svx/uiconfig/ui.po8
-rw-r--r--source/nso/cui/uiconfig/ui.po10
-rw-r--r--source/nso/sfx2/source/dialog.po26
-rw-r--r--source/nso/sfx2/uiconfig/ui.po8
-rw-r--r--source/nso/svtools/source/dialogs.po18
-rw-r--r--source/nso/svtools/source/misc.po13
-rw-r--r--source/nso/svx/source/stbctrls.po14
-rw-r--r--source/nso/svx/uiconfig/ui.po8
-rw-r--r--source/oc/cui/uiconfig/ui.po8
-rw-r--r--source/oc/sfx2/source/dialog.po28
-rw-r--r--source/oc/sfx2/uiconfig/ui.po15
-rw-r--r--source/oc/svtools/source/dialogs.po12
-rw-r--r--source/oc/svtools/source/misc.po17
-rw-r--r--source/oc/svx/source/stbctrls.po16
-rw-r--r--source/oc/svx/uiconfig/ui.po12
-rw-r--r--source/om/cui/uiconfig/ui.po6
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/om/sfx2/source/dialog.po26
-rw-r--r--source/om/sfx2/uiconfig/ui.po8
-rw-r--r--source/om/svtools/source/dialogs.po18
-rw-r--r--source/om/svtools/source/misc.po13
-rw-r--r--source/om/svx/source/stbctrls.po14
-rw-r--r--source/om/svx/uiconfig/ui.po8
-rw-r--r--source/or/cui/uiconfig/ui.po9
-rw-r--r--source/or/sfx2/source/dialog.po30
-rw-r--r--source/or/sfx2/uiconfig/ui.po10
-rw-r--r--source/or/svtools/source/dialogs.po18
-rw-r--r--source/or/svtools/source/misc.po13
-rw-r--r--source/or/svx/source/stbctrls.po14
-rw-r--r--source/or/svx/uiconfig/ui.po8
-rw-r--r--source/pa-IN/cui/uiconfig/ui.po10
-rw-r--r--source/pa-IN/sfx2/source/dialog.po28
-rw-r--r--source/pa-IN/sfx2/uiconfig/ui.po8
-rw-r--r--source/pa-IN/svtools/source/dialogs.po18
-rw-r--r--source/pa-IN/svtools/source/misc.po11
-rw-r--r--source/pa-IN/svx/source/stbctrls.po14
-rw-r--r--source/pa-IN/svx/uiconfig/ui.po8
-rw-r--r--source/pl/cui/uiconfig/ui.po8
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po228
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po146
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pl/sfx2/source/dialog.po28
-rw-r--r--source/pl/sfx2/uiconfig/ui.po15
-rw-r--r--source/pl/svtools/source/dialogs.po18
-rw-r--r--source/pl/svtools/source/misc.po13
-rw-r--r--source/pl/svtools/uiconfig/ui.po6
-rw-r--r--source/pl/svx/source/stbctrls.po12
-rw-r--r--source/pl/svx/uiconfig/ui.po14
-rw-r--r--source/pt-BR/cui/uiconfig/ui.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--source/pt-BR/sfx2/source/dialog.po32
-rw-r--r--source/pt-BR/sfx2/uiconfig/ui.po12
-rw-r--r--source/pt-BR/svtools/source/dialogs.po16
-rw-r--r--source/pt-BR/svtools/source/misc.po17
-rw-r--r--source/pt-BR/svx/source/stbctrls.po16
-rw-r--r--source/pt-BR/svx/uiconfig/ui.po14
-rw-r--r--source/pt/cui/uiconfig/ui.po10
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po26
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po34
-rw-r--r--source/pt/sd/uiconfig/simpress/ui.po6
-rw-r--r--source/pt/sfx2/source/dialog.po30
-rw-r--r--source/pt/sfx2/uiconfig/ui.po10
-rw-r--r--source/pt/svtools/source/dialogs.po16
-rw-r--r--source/pt/svtools/source/misc.po15
-rw-r--r--source/pt/svx/source/stbctrls.po12
-rw-r--r--source/pt/svx/uiconfig/ui.po14
-rw-r--r--source/ro/cui/uiconfig/ui.po8
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ro/sfx2/source/dialog.po28
-rw-r--r--source/ro/sfx2/uiconfig/ui.po15
-rw-r--r--source/ro/svtools/source/dialogs.po12
-rw-r--r--source/ro/svtools/source/misc.po13
-rw-r--r--source/ro/svx/source/stbctrls.po16
-rw-r--r--source/ro/svx/uiconfig/ui.po8
-rw-r--r--source/ru/cui/uiconfig/ui.po8
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ru/sfx2/source/dialog.po28
-rw-r--r--source/ru/sfx2/uiconfig/ui.po15
-rw-r--r--source/ru/svtools/source/dialogs.po12
-rw-r--r--source/ru/svtools/source/misc.po13
-rw-r--r--source/ru/svx/source/stbctrls.po12
-rw-r--r--source/ru/svx/uiconfig/ui.po14
-rw-r--r--source/ru/wizards/source/formwizard.po14
-rw-r--r--source/rw/cui/uiconfig/ui.po6
-rw-r--r--source/rw/sfx2/source/dialog.po26
-rw-r--r--source/rw/sfx2/uiconfig/ui.po6
-rw-r--r--source/rw/svtools/source/dialogs.po18
-rw-r--r--source/rw/svtools/source/misc.po13
-rw-r--r--source/rw/svx/source/stbctrls.po14
-rw-r--r--source/rw/svx/uiconfig/ui.po8
-rw-r--r--source/sa-IN/cui/uiconfig/ui.po10
-rw-r--r--source/sa-IN/sfx2/source/dialog.po28
-rw-r--r--source/sa-IN/sfx2/uiconfig/ui.po8
-rw-r--r--source/sa-IN/svtools/source/dialogs.po18
-rw-r--r--source/sa-IN/svtools/source/misc.po13
-rw-r--r--source/sa-IN/svx/source/stbctrls.po14
-rw-r--r--source/sa-IN/svx/uiconfig/ui.po8
-rw-r--r--source/sat/cui/uiconfig/ui.po10
-rw-r--r--source/sat/sfx2/source/dialog.po28
-rw-r--r--source/sat/sfx2/uiconfig/ui.po10
-rw-r--r--source/sat/svtools/source/dialogs.po18
-rw-r--r--source/sat/svtools/source/misc.po13
-rw-r--r--source/sat/svx/source/stbctrls.po14
-rw-r--r--source/sat/svx/uiconfig/ui.po8
-rw-r--r--source/sd/cui/uiconfig/ui.po10
-rw-r--r--source/sd/sfx2/source/dialog.po28
-rw-r--r--source/sd/sfx2/uiconfig/ui.po10
-rw-r--r--source/sd/svtools/source/dialogs.po18
-rw-r--r--source/sd/svtools/source/misc.po11
-rw-r--r--source/sd/svx/source/stbctrls.po14
-rw-r--r--source/sd/svx/uiconfig/ui.po8
-rw-r--r--source/si/cui/uiconfig/ui.po10
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/si/sfx2/source/dialog.po28
-rw-r--r--source/si/sfx2/uiconfig/ui.po10
-rw-r--r--source/si/svtools/source/dialogs.po18
-rw-r--r--source/si/svtools/source/misc.po13
-rw-r--r--source/si/svx/source/stbctrls.po14
-rw-r--r--source/si/svx/uiconfig/ui.po8
-rw-r--r--source/sid/cui/uiconfig/ui.po10
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/sid/sfx2/source/dialog.po30
-rw-r--r--source/sid/sfx2/uiconfig/ui.po10
-rw-r--r--source/sid/svtools/source/dialogs.po18
-rw-r--r--source/sid/svtools/source/misc.po15
-rw-r--r--source/sid/svx/source/stbctrls.po14
-rw-r--r--source/sid/svx/uiconfig/ui.po8
-rw-r--r--source/sk/cui/uiconfig/ui.po8
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sk/sfx2/source/dialog.po28
-rw-r--r--source/sk/sfx2/uiconfig/ui.po15
-rw-r--r--source/sk/svtools/source/dialogs.po12
-rw-r--r--source/sk/svtools/source/misc.po13
-rw-r--r--source/sk/svx/source/stbctrls.po12
-rw-r--r--source/sk/svx/uiconfig/ui.po14
-rw-r--r--source/sq/cui/uiconfig/ui.po12
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/sq/sfx2/source/dialog.po30
-rw-r--r--source/sq/sfx2/uiconfig/ui.po10
-rw-r--r--source/sq/svtools/source/dialogs.po18
-rw-r--r--source/sq/svtools/source/misc.po15
-rw-r--r--source/sq/svx/source/stbctrls.po14
-rw-r--r--source/sq/svx/uiconfig/ui.po8
-rw-r--r--source/ss/cui/uiconfig/ui.po6
-rw-r--r--source/ss/sfx2/source/dialog.po28
-rw-r--r--source/ss/sfx2/uiconfig/ui.po6
-rw-r--r--source/ss/svtools/source/dialogs.po18
-rw-r--r--source/ss/svtools/source/misc.po11
-rw-r--r--source/ss/svx/source/stbctrls.po14
-rw-r--r--source/ss/svx/uiconfig/ui.po8
-rw-r--r--source/st/cui/uiconfig/ui.po6
-rw-r--r--source/st/sfx2/source/dialog.po26
-rw-r--r--source/st/sfx2/uiconfig/ui.po8
-rw-r--r--source/st/svtools/source/dialogs.po18
-rw-r--r--source/st/svtools/source/misc.po11
-rw-r--r--source/st/svx/source/stbctrls.po14
-rw-r--r--source/st/svx/uiconfig/ui.po8
-rw-r--r--source/sv/cui/uiconfig/ui.po8
-rw-r--r--source/sv/extensions/source/propctrlr.po78
-rw-r--r--source/sv/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sv/filter/uiconfig/ui.po8
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po29
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po50
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po12
-rw-r--r--source/sv/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/explorer/database.po15
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po33
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po30
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po11
-rw-r--r--source/sv/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/sv/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/sv/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po13
-rw-r--r--source/sv/helpcontent2/source/text/swriter/04.po8
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po13
-rw-r--r--source/sv/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po268
-rw-r--r--source/sv/sfx2/source/dialog.po30
-rw-r--r--source/sv/sfx2/uiconfig/ui.po15
-rw-r--r--source/sv/svtools/source/dialogs.po12
-rw-r--r--source/sv/svtools/source/misc.po13
-rw-r--r--source/sv/svx/source/stbctrls.po16
-rw-r--r--source/sv/svx/uiconfig/ui.po10
-rw-r--r--source/sw-TZ/cui/uiconfig/ui.po6
-rw-r--r--source/sw-TZ/sfx2/source/dialog.po26
-rw-r--r--source/sw-TZ/sfx2/uiconfig/ui.po8
-rw-r--r--source/sw-TZ/svtools/source/dialogs.po18
-rw-r--r--source/sw-TZ/svtools/source/misc.po11
-rw-r--r--source/sw-TZ/svx/source/stbctrls.po14
-rw-r--r--source/sw-TZ/svx/uiconfig/ui.po8
-rw-r--r--source/szl/cui/uiconfig/ui.po6
-rw-r--r--source/szl/sfx2/source/dialog.po30
-rw-r--r--source/szl/sfx2/uiconfig/ui.po6
-rw-r--r--source/szl/svtools/source/dialogs.po16
-rw-r--r--source/szl/svtools/source/misc.po15
-rw-r--r--source/szl/svx/source/stbctrls.po14
-rw-r--r--source/szl/svx/uiconfig/ui.po8
-rw-r--r--source/ta/chart2/source/controller/dialogs.po12
-rw-r--r--source/ta/cui/uiconfig/ui.po16
-rw-r--r--source/ta/extensions/source/update/check.po15
-rw-r--r--source/ta/extensions/uiconfig/scanner/ui.po10
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ta/readlicense_oo/docs.po20
-rw-r--r--source/ta/scaddins/source/analysis.po10
-rw-r--r--source/ta/sfx2/source/dialog.po30
-rw-r--r--source/ta/sfx2/uiconfig/ui.po15
-rw-r--r--source/ta/svtools/source/dialogs.po12
-rw-r--r--source/ta/svtools/source/misc.po11
-rw-r--r--source/ta/svx/source/stbctrls.po10
-rw-r--r--source/ta/svx/uiconfig/ui.po8
-rw-r--r--source/te/cui/uiconfig/ui.po13
-rw-r--r--source/te/sfx2/source/dialog.po30
-rw-r--r--source/te/sfx2/uiconfig/ui.po8
-rw-r--r--source/te/svtools/source/dialogs.po18
-rw-r--r--source/te/svtools/source/misc.po13
-rw-r--r--source/te/svx/source/stbctrls.po14
-rw-r--r--source/te/svx/uiconfig/ui.po8
-rw-r--r--source/tg/cui/uiconfig/ui.po6
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/tg/sfx2/source/dialog.po26
-rw-r--r--source/tg/sfx2/uiconfig/ui.po10
-rw-r--r--source/tg/svtools/source/dialogs.po18
-rw-r--r--source/tg/svtools/source/misc.po11
-rw-r--r--source/tg/svx/source/stbctrls.po14
-rw-r--r--source/tg/svx/uiconfig/ui.po8
-rw-r--r--source/th/cui/uiconfig/ui.po10
-rw-r--r--source/th/sfx2/source/dialog.po28
-rw-r--r--source/th/sfx2/uiconfig/ui.po8
-rw-r--r--source/th/svtools/source/dialogs.po18
-rw-r--r--source/th/svtools/source/misc.po13
-rw-r--r--source/th/svx/source/stbctrls.po14
-rw-r--r--source/th/svx/uiconfig/ui.po8
-rw-r--r--source/tn/cui/uiconfig/ui.po6
-rw-r--r--source/tn/sfx2/source/dialog.po28
-rw-r--r--source/tn/sfx2/uiconfig/ui.po8
-rw-r--r--source/tn/svtools/source/dialogs.po18
-rw-r--r--source/tn/svtools/source/misc.po11
-rw-r--r--source/tn/svx/source/stbctrls.po14
-rw-r--r--source/tn/svx/uiconfig/ui.po8
-rw-r--r--source/tr/cui/uiconfig/ui.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/tr/sfx2/source/dialog.po28
-rw-r--r--source/tr/sfx2/uiconfig/ui.po15
-rw-r--r--source/tr/svtools/source/dialogs.po12
-rw-r--r--source/tr/svtools/source/misc.po13
-rw-r--r--source/tr/svx/source/stbctrls.po12
-rw-r--r--source/tr/svx/uiconfig/ui.po14
-rw-r--r--source/ts/cui/uiconfig/ui.po6
-rw-r--r--source/ts/sfx2/source/dialog.po28
-rw-r--r--source/ts/sfx2/uiconfig/ui.po8
-rw-r--r--source/ts/svtools/source/dialogs.po18
-rw-r--r--source/ts/svtools/source/misc.po11
-rw-r--r--source/ts/svx/source/stbctrls.po14
-rw-r--r--source/ts/svx/uiconfig/ui.po8
-rw-r--r--source/ug/cui/uiconfig/ui.po12
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/ug/sfx2/source/dialog.po28
-rw-r--r--source/ug/sfx2/uiconfig/ui.po18
-rw-r--r--source/ug/svtools/source/dialogs.po18
-rw-r--r--source/ug/svtools/source/misc.po11
-rw-r--r--source/ug/svx/source/stbctrls.po10
-rw-r--r--source/ug/svx/uiconfig/ui.po8
-rw-r--r--source/uk/cui/uiconfig/ui.po12
-rw-r--r--source/uk/dbaccess/source/ui/querydesign.po10
-rw-r--r--source/uk/dbaccess/uiconfig/ui.po10
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po50
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po82
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po136
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po234
-rw-r--r--source/uk/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/uk/sfx2/source/dialog.po30
-rw-r--r--source/uk/sfx2/uiconfig/ui.po16
-rw-r--r--source/uk/svtools/source/dialogs.po16
-rw-r--r--source/uk/svtools/source/misc.po17
-rw-r--r--source/uk/svx/source/form.po10
-rw-r--r--source/uk/svx/source/stbctrls.po14
-rw-r--r--source/uk/svx/uiconfig/ui.po16
-rw-r--r--source/uz/cui/uiconfig/ui.po6
-rw-r--r--source/uz/sfx2/source/dialog.po28
-rw-r--r--source/uz/sfx2/uiconfig/ui.po8
-rw-r--r--source/uz/svtools/source/dialogs.po18
-rw-r--r--source/uz/svtools/source/misc.po15
-rw-r--r--source/uz/svx/source/stbctrls.po14
-rw-r--r--source/uz/svx/uiconfig/ui.po8
-rw-r--r--source/ve/cui/uiconfig/ui.po6
-rw-r--r--source/ve/sfx2/source/dialog.po26
-rw-r--r--source/ve/sfx2/uiconfig/ui.po8
-rw-r--r--source/ve/svtools/source/dialogs.po18
-rw-r--r--source/ve/svtools/source/misc.po11
-rw-r--r--source/ve/svx/source/stbctrls.po14
-rw-r--r--source/ve/svx/uiconfig/ui.po8
-rw-r--r--source/vec/chart2/source/controller/dialogs.po10
-rw-r--r--source/vec/chart2/uiconfig/ui.po8
-rw-r--r--source/vec/cui/source/options.po5
-rw-r--r--source/vec/cui/uiconfig/ui.po20
-rw-r--r--source/vec/dbaccess/uiconfig/ui.po6
-rw-r--r--source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po7
-rw-r--r--source/vec/readlicense_oo/docs.po6
-rw-r--r--source/vec/sfx2/source/dialog.po28
-rw-r--r--source/vec/sfx2/source/view.po6
-rw-r--r--source/vec/sfx2/uiconfig/ui.po15
-rw-r--r--source/vec/svtools/source/dialogs.po12
-rw-r--r--source/vec/svtools/source/misc.po13
-rw-r--r--source/vec/svx/source/stbctrls.po12
-rw-r--r--source/vec/svx/uiconfig/ui.po14
-rw-r--r--source/vec/sw/source/uibase/utlui.po6
-rw-r--r--source/vec/swext/mediawiki/help.po30
-rw-r--r--source/vi/cui/uiconfig/ui.po10
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/vi/sfx2/source/dialog.po28
-rw-r--r--source/vi/sfx2/uiconfig/ui.po8
-rw-r--r--source/vi/svtools/source/dialogs.po18
-rw-r--r--source/vi/svtools/source/misc.po13
-rw-r--r--source/vi/svx/source/stbctrls.po14
-rw-r--r--source/vi/svx/uiconfig/ui.po8
-rw-r--r--source/xh/cui/uiconfig/ui.po6
-rw-r--r--source/xh/sfx2/source/dialog.po26
-rw-r--r--source/xh/sfx2/uiconfig/ui.po10
-rw-r--r--source/xh/svtools/source/dialogs.po18
-rw-r--r--source/xh/svtools/source/misc.po13
-rw-r--r--source/xh/svx/source/stbctrls.po14
-rw-r--r--source/xh/svx/uiconfig/ui.po8
-rw-r--r--source/zh-CN/cui/uiconfig/ui.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/zh-CN/sfx2/source/dialog.po28
-rw-r--r--source/zh-CN/sfx2/uiconfig/ui.po15
-rw-r--r--source/zh-CN/svtools/source/dialogs.po16
-rw-r--r--source/zh-CN/svtools/source/misc.po13
-rw-r--r--source/zh-CN/svx/source/stbctrls.po12
-rw-r--r--source/zh-CN/svx/uiconfig/ui.po14
-rw-r--r--source/zh-TW/cui/uiconfig/ui.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/zh-TW/sfx2/source/dialog.po28
-rw-r--r--source/zh-TW/sfx2/uiconfig/ui.po15
-rw-r--r--source/zh-TW/svtools/source/dialogs.po12
-rw-r--r--source/zh-TW/svtools/source/misc.po13
-rw-r--r--source/zh-TW/svx/source/dialog.po8
-rw-r--r--source/zh-TW/svx/source/stbctrls.po12
-rw-r--r--source/zh-TW/svx/uiconfig/ui.po14
-rw-r--r--source/zu/cui/uiconfig/ui.po6
-rw-r--r--source/zu/sfx2/source/dialog.po28
-rw-r--r--source/zu/sfx2/uiconfig/ui.po6
-rw-r--r--source/zu/svtools/source/dialogs.po18
-rw-r--r--source/zu/svtools/source/misc.po13
-rw-r--r--source/zu/svx/source/stbctrls.po14
-rw-r--r--source/zu/svx/uiconfig/ui.po8
1115 files changed, 11101 insertions, 6536 deletions
diff --git a/source/af/cui/uiconfig/ui.po b/source/af/cui/uiconfig/ui.po
index a7f57134ebb..4dd3485e664 100644
--- a/source/af/cui/uiconfig/ui.po
+++ b/source/af/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\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: 1476794659.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593134.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/af/sfx2/source/dialog.po b/source/af/sfx2/source/dialog.po
index 968d856c38b..b73e44dc69c 100644
--- a/source/af/sfx2/source/dialog.po
+++ b/source/af/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467650563.000000\n"
+"X-POOTLE-MTIME: 1480676667.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hiërargies"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/af/sfx2/uiconfig/ui.po b/source/af/sfx2/uiconfig/ui.po
index b323e99655c..863e5158f70 100644
--- a/source/af/sfx2/uiconfig/ui.po
+++ b/source/af/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 16:44+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: af\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: 1467650650.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480676832.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/af/svtools/source/dialogs.po b/source/af/svtools/source/dialogs.po
index fdab2e243da..e1285839ba6 100644
--- a/source/af/svtools/source/dialogs.po
+++ b/source/af/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-29 18:28+0000\n"
-"Last-Translator: system user <>\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-05-01 15:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\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: 1456770514.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462118072.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Geformateerde teks [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/af/svtools/source/misc.po b/source/af/svtools/source/misc.po
index 565fa6ab787..1b13031144a 100644
--- a/source/af/svtools/source/misc.po
+++ b/source/af/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467651022.000000\n"
+"X-POOTLE-MTIME: 1480677245.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/af/svx/source/stbctrls.po b/source/af/svx/source/stbctrls.po
index ed99d925396..46590540690 100644
--- a/source/af/svx/source/stbctrls.po
+++ b/source/af/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 16:54+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-02 11:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467651243.000000\n"
+"X-POOTLE-MTIME: 1480678276.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/af/svx/uiconfig/ui.po b/source/af/svx/uiconfig/ui.po
index 58a794733f1..116213a4a9a 100644
--- a/source/af/svx/uiconfig/ui.po
+++ b/source/af/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-02 11:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/am/cui/uiconfig/ui.po b/source/am/cui/uiconfig/ui.po
index 8c1093f1f45..3f2715f2cd5 100644
--- a/source/am/cui/uiconfig/ui.po
+++ b/source/am/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-03-20 00:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-02 23:24+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\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.8\n"
-"X-POOTLE-MTIME: 1489969104.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491175465.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -15484,7 +15484,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Spelling and Grammar: $LANGUAGE ($LOCATION)"
-msgstr "ፊደል ማረሚያ እና ሰዋሰው: $LANGUAGE ($LOCATION)"
+msgstr "ፊደል እና ሰዋሰው ማረሚያ: $LANGUAGE ($LOCATION)"
#: spellingdialog.ui
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 4680596d0c4..e8b345644d7 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-03-18 20:02+0000\n"
+"PO-Revision-Date: 2017-04-02 22:39+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: 1489867329.000000\n"
+"X-POOTLE-MTIME: 1491172740.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -17014,7 +17014,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "<emph>መግለጫ1, መግለጫ2:</emph> ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት"
+msgstr "<emph>መግለጫ1: መግለጫ2:</emph> ማንኛውም የ ቁጥር መግለጫ እርስዎ መቀነስ የሚፈልጉት"
#: 03070100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index ced22e2062e..590033d6f5c 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-28 17:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490723843.000000\n"
#: 01120000.xhp
@@ -5677,16 +5677,16 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index 011922794bd..52219ffdde3 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-03-17 01:14+0000\n"
+"PO-Revision-Date: 2017-03-31 01:47+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: 1489713299.000000\n"
+"X-POOTLE-MTIME: 1490924866.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id3791924\n"
"help.text"
msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
-msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት perspective ተመሳሳይ እንደ አሁኑ እትም"
+msgstr "አሮጌው እትም የ %PRODUCTNAME ማሳየት አይችልም የ ፐርሰንት ተመሳሳይ አስተያየት እንደ አሁኑ እትም"
#: three_d_view.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index a4586f9145b..a6d5a0345d3 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/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-03-17 19:11+0000\n"
+"PO-Revision-Date: 2017-03-30 20: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: 1489777905.000000\n"
+"X-POOTLE-MTIME: 1490905223.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -4112,7 +4112,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
-msgstr "በ እርዳታ ገጽ ላይ ለ <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] ባጠቃላይ</link> እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: እና መጎተቻ እና መጣያ የ መሳሰሉ"
+msgstr "በ እርዳታ ገጽ ላይ ለ <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] ባጠቃላይ</link> እርስዎ መመሪያዎች ያገኛሉ በ ሁሉም ክፍሎች ውስጥ የሚፈጸሙ: እንደ በ መስኮቶች መስሪያ እና ዝርዝሮች: ማስተካከያ $[officename] የ ዳታ ምንጮች: አዳራሽ: መጎተቻ እና መጣያ የመሳሰሉ"
#: 00000099.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 9c38fe54c35..3c31da4a1f1 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-03-28 18:53+0000\n"
+"PO-Revision-Date: 2017-03-31 01:42+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: 1490727230.000000\n"
+"X-POOTLE-MTIME: 1490924546.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Form Controls"
-msgstr "የፎርም መቆጣጠሪያዎች"
+msgstr "የ ፎርም መቆጣጠሪያዎች"
#: 01170000.xhp
msgctxt ""
@@ -674,7 +674,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Form Controls"
-msgstr "የፎርም መቆጣጠሪያዎች"
+msgstr "የ ፎርም መቆጣጠሪያዎች"
#: 01170000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/05.po b/source/am/helpcontent2/source/text/shared/05.po
index 9c85e335c9f..823f8b0f3d8 100644
--- a/source/am/helpcontent2/source/text/shared/05.po
+++ b/source/am/helpcontent2/source/text/shared/05.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: 2016-12-07 18:50+0000\n"
+"PO-Revision-Date: 2017-04-02 22:43+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: 1481136618.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491173028.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "After the search has been carried out, the document headings of the results appear in a list. Either double-click an entry, or select it and click <emph>Display</emph> to load the corresponding Help document."
-msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ <emph>ማሳያ</emph>ተመሳሳዩን የ እርዳታ ገጽ ለ መጫን"
+msgstr "ፍለጋው ከተካሄደ በኋላ የ ሰነዱ ራስጌ ውጤት ይታያል በ ዝርዝር ውስጥ: ሁለት ጊዜ-ይጫኑ በ ውጤቱ ላይ ወይንም ይምረጡት እና ይጫኑ <emph> ማሳያ </emph> ተመሳሳዩን የ እርዳታ ገጽ ለ መጫን"
#: 00000140.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autokorr.po b/source/am/helpcontent2/source/text/shared/autokorr.po
index db1ad6d1282..f9acd4cca46 100644
--- a/source/am/helpcontent2/source/text/shared/autokorr.po
+++ b/source/am/helpcontent2/source/text/shared/autokorr.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: 2017-01-30 19:31+0000\n"
+"PO-Revision-Date: 2017-04-02 22:39+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: 1485804682.000000\n"
+"X-POOTLE-MTIME: 1491172786.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Minus signs have been replaced"
-msgstr "የመቀነስ ምልክት ተቀይሯል"
+msgstr "የ መቀነሻ ምልክት ተቀይሯል"
#: 12000000.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 7e474b524bc..377ddacd8de 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-03-28 18:09+0000\n"
+"PO-Revision-Date: 2017-04-02 22:41+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: 1490724592.000000\n"
+"X-POOTLE-MTIME: 1491172896.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -12761,7 +12761,7 @@ msgctxt ""
"par_id1278420\n"
"help.text"
msgid "In addition, you can click the Label Field or Text Box icon in the toolbar, then drag a rectangle in the Page Header or Page Footer area, to define a text that is the same on all pages. You enter the text in the Label box of the corresponding Properties window. You can also add graphics by using the Graphics icon."
-msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክይ ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት"
+msgstr "በ ተጨማሪ እርስዎ መጫን ይችላሉ የ ምልክት ሜዳ ወይንም የ ጽሁፍ ሳጥን ምልክት ከ እቃ መደርደሪያ ላይ: እና ከዛ ይጎትቱ አራት ማእዘን በ ገጽ ራስጌ ውስጥ ወይንም የ ገጽ ግርጌ ቦታ ላይ: ለ መግለጽ ጽሁፍ በ ሁሉም ገጾች ላይ ተመሳሳይ መሆኑን: እርስዎ ያስገቡ በ ምልክት ሳጥን ውስጥ በ ተመሳሳይ ባህሪዎች መስኮት ውስጥ: እርስዎ እንዲሁም መጨመር ይችላሉ ንድፎች በ መጠቀም የ ንድፍ ምልክት"
#: rep_main.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 1f45586dc90..3ee64fb3fcd 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/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-03-28 19:00+0000\n"
+"PO-Revision-Date: 2017-03-30 19:34+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: 1490727634.000000\n"
+"X-POOTLE-MTIME: 1490902447.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -10043,7 +10043,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor."
-msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው የ ፍጹም መንገድ ስሞች ነው በውስጣዊ: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው"
+msgstr "እርስዎ የ አይጥ ቁልፍ በ hyperlink, ላይ ሲያሳርፉ: የ እርዳታ ጠቃሚ ምክር ይታያል ከ ፍጹም ማመሳከሪያ ጋር: በ $[officename] የሚጠቀመው በ ውስጣዊ የ ፍጹም መንገድ ስሞች ነው: ሙሉ መንገድ እና አድራሻ የሚታየው እርስዎ ውጠቱን በሚመለከቱ ጊዜ ነው በ HTML መላኪያ: በ መጫን የ HTML ፋይል እንደ \"ጽሁፍ\" ወይንም በ ጽሁፍ ማረሚያ በ መክፈት ነው"
#: imagemap.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index caf4f8e8116..c421317ad7f 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
-"PO-Revision-Date: 2017-03-17 01:24+0000\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
+"PO-Revision-Date: 2017-04-02 21:44+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.8\n"
-"X-POOTLE-MTIME: 1489713879.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491169466.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2453,8 +2453,8 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
-msgstr "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">ይምረጡ</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
+msgstr ""
#: 01010501.xhp
msgctxt ""
@@ -8626,7 +8626,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "Character style"
-msgstr "የባህሪ ዘዴ"
+msgstr "የ ባህሪ ዘዴ"
#: 01041100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index 6266d2f71b2..30d27e3ddcc 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-03-28 19:07+0000\n"
+"PO-Revision-Date: 2017-04-02 22: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: 1490728074.000000\n"
+"X-POOTLE-MTIME: 1491172804.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -501,7 +501,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Minus"
-msgstr "መቀነስ"
+msgstr "መቀነሻ"
#: 03090100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index ce83c10ccdd..40ef95eb055 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.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-03-28 17:05+0000\n"
+"PO-Revision-Date: 2017-03-30 19:34+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: 1490720721.000000\n"
+"X-POOTLE-MTIME: 1490902474.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -2428,7 +2428,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Text documents in $[officename] have an integrated <link href=\"text/swriter/main0214.xhp\" name=\"calculation function\">calculation function</link> that helps you execute sophisticated calculations or logical links. You can easily create a table in a text document in order to perform calculations."
-msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የ<link href=\"text/swriter/main0214.xhp\" name=\"calculation function\">ማስሊያ ተግባር</link> አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም"
+msgstr "የ ጽሁፍ ሰነድ $[officename] አብሮት የተዋሀደ የ <link href=\"text/swriter/main0214.xhp\" name=\"calculation function\"> ማስሊያ ተግባር</link> አለው: የተወሳሰቡ ስሌቶችን መፈጸም የሚያስችሎት ወይንም logical links. እርስዎ በ ቀላሉ መፍጠር ይችላሉ ሰንጠረዥ በ ጽሁፍ ሰነድ ውስጥ ስሌቶችን ለመፈጸም"
#: main0503.xhp
msgctxt ""
@@ -2518,4 +2518,4 @@ msgctxt ""
"28\n"
"help.text"
msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
-msgstr "መጠቀም ይችላሉ <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">የእርዳታ ስርአቱን</link> እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">መመሪያዎች</link> ለቀላል እና ለውስብስብ ስራዎች"
+msgstr "መጠቀም ይችላሉ <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">የ እርዳታ ስርአቱን</link> እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">መመሪያዎች</link> ለ ቀላል እና ለ ውስብስብ ስራዎች"
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index f67140dc5b8..d70c9cd687e 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-03-28 02:40+0000\n"
+"PO-Revision-Date: 2017-03-30 23: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: 1490668849.000000\n"
+"X-POOTLE-MTIME: 1490914965.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -15753,7 +15753,7 @@ msgctxt ""
"68\n"
"help.text"
msgid "Right-click in a paragraph, choose <emph>Paragraph, </emph>set the options that you want, for example, the background color, and then click <emph>OK</emph>."
-msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ <emph>አንቀጽ </emph>ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ : የ መደብ ቀለም: እና ከዛ ይጫኑ <emph>እሺ</emph>."
+msgstr "በ ቀኝ-ይጫኑ በ አንቀጽ ውስጥ: ይምረጡ <emph>አንቀጽ </emph>ማሰናጃ እርስዎ የሚፈጉትን ምርጫ: ለምሳሌ: የ መደብ ቀለም: እና ከዛ ይጫኑ <emph>እሺ</emph>."
#: text_emphasize.xhp
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 87632694982..7480a81984d 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-03-19 23:57+0000\n"
+"PO-Revision-Date: 2017-04-02 22: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: 1489967877.000000\n"
+"X-POOTLE-MTIME: 1491173523.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23587,7 +23587,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Settings"
-msgstr "የገጽ ማሰናጃዎች"
+msgstr "የ ገጽ ማሰናጃ"
#: ReportCommands.xcu
msgctxt ""
@@ -26512,7 +26512,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Column Type"
-msgstr "የገጽ አምድ አይነት"
+msgstr "የ ገጽ አምድ አይነት"
#: WriterCommands.xcu
msgctxt ""
@@ -26530,7 +26530,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Settings"
-msgstr "የገጽ ማሰናጃዎች"
+msgstr "የ ገጽ ማሰናጃ"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sc/uiconfig/scalc/ui.po b/source/am/sc/uiconfig/scalc/ui.po
index cc6888ecb41..bed7a61c2f2 100644
--- a/source/am/sc/uiconfig/scalc/ui.po
+++ b/source/am/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-23 23:47+0000\n"
+"PO-Revision-Date: 2017-04-02 23:42+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: 1487893656.000000\n"
+"X-POOTLE-MTIME: 1491176548.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6548,14 +6548,13 @@ msgid "Case se_nsitive"
msgstr "Case se_nsitive"
#: optcalculatepage.ui
-#, fuzzy
msgctxt ""
"optcalculatepage.ui\n"
"case\n"
"tooltip_text\n"
"string.text"
msgid "Disable case sensitivity for interoperability with Microsoft Excel"
-msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel"
+msgstr "ማሰናከያ የ case sensitivity ለ መቀያየሪያ ከ Microsoft Excel ጋር"
#: optcalculatepage.ui
msgctxt ""
diff --git a/source/am/sfx2/source/dialog.po b/source/am/sfx2/source/dialog.po
index 33d8dcf4269..5ec1d3c78b9 100644
--- a/source/am/sfx2/source/dialog.po
+++ b/source/am/sfx2/source/dialog.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-04 20:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ 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-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480881922.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "በ ቅደም ተከተል"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/am/sfx2/uiconfig/ui.po b/source/am/sfx2/uiconfig/ui.po
index d8c6c349f7e..03baf7f3445 100644
--- a/source/am/sfx2/uiconfig/ui.po
+++ b/source/am/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
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"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 02:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485139385.000000\n"
#: alienwarndialog.ui
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL can be obtained at http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Third Party Code Additional copyright notices and license terms applicable to portions of the Software are set forth in the LICENSE.html file; choose Show License to see exact details in English.\n"
-"\n"
-"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
-"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
-"\n"
-"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/am/svtools/source/dialogs.po b/source/am/svtools/source/dialogs.po
index 78bc32bed25..c2759571f4f 100644
--- a/source/am/svtools/source/dialogs.po
+++ b/source/am/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-20 00:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489968923.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "በትክክል የቀረበ ጽሁፍ [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/am/svtools/source/misc.po b/source/am/svtools/source/misc.po
index a721de7449b..7af32e764c0 100644
--- a/source/am/svtools/source/misc.po
+++ b/source/am/svtools/source/misc.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-14 15:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungarian (Szekely-Hungarian Rovas)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/am/svx/source/stbctrls.po b/source/am/svx/source/stbctrls.po
index 5e945c7f3a6..a462bad0e6b 100644
--- a/source/am/svx/source/stbctrls.po
+++ b/source/am/svx/source/stbctrls.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-02 18:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ 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-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1480703596.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/am/svx/uiconfig/ui.po b/source/am/svx/uiconfig/ui.po
index 8c510ac6de1..e3e768db059 100644
--- a/source/am/svx/uiconfig/ui.po
+++ b/source/am/svx/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
-"PO-Revision-Date: 2017-03-19 16:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-02 23:45+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.8\n"
-"X-POOTLE-MTIME: 1489942235.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491176727.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Focal length"
-msgstr ""
+msgstr "የ _ትኩረት እርዝመት"
#: docking3deffects.ui
msgctxt ""
@@ -5075,20 +5075,20 @@ msgstr "በ ጥንቃቄ ዘዴ _ይቀጥሉ"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "_ማጥፊያ"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "ለውጦቹን _መፈጸሚያ እና እንደገና ማስጀመሪያ"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ar/cui/uiconfig/ui.po b/source/ar/cui/uiconfig/ui.po
index 4fab9330c4d..373a9290071 100644
--- a/source/ar/cui/uiconfig/ui.po
+++ b/source/ar/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-03-16 03:36+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-03 15:28+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
"Language: ar\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1489635387.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491233297.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "الحقوق محفوظة © ٢٠٠٠–٢٠١٦ لمساهمي ليبر‌ أوفيس."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Component method name:"
-msgstr ""
+msgstr "اسم طريقة المكون:"
#: autocorrectdialog.ui
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Unlinked image"
-msgstr ""
+msgstr "الصور غير المربوطة"
#: backgroundpage.ui
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Find images"
-msgstr ""
+msgstr "ابحث عن الصور"
#: backgroundpage.ui
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color"
-msgstr "لون"
+msgstr "اللون"
#: backgroundpage.ui
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Image"
-msgstr ""
+msgstr "الصورة"
#: baselinksdialog.ui
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Edit Links"
-msgstr "حرّر الوصلات"
+msgstr "حرّر الروابط"
#: baselinksdialog.ui
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Break Link"
-msgstr ""
+msgstr "_فك الرابط"
#: baselinksdialog.ui
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Automatic"
-msgstr "ت_لقائية"
+msgstr "ت_لقائيًا"
#: baselinksdialog.ui
msgctxt ""
@@ -1268,7 +1268,6 @@ msgid "Style:"
msgstr "النمط:"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1278,7 +1277,6 @@ msgid "Original"
msgstr "كما هي"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1288,7 +1286,6 @@ msgid "Filled"
msgstr "مملوءة"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"bitmapstyle\n"
@@ -1304,7 +1301,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Zoomed"
-msgstr ""
+msgstr "مقرّبة"
#: bitmaptabpage.ui
msgctxt ""
@@ -1313,7 +1310,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Custom"
-msgstr ""
+msgstr "مخصّص"
#: bitmaptabpage.ui
msgctxt ""
@@ -1322,7 +1319,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Tiled"
-msgstr ""
+msgstr "مبلّطة"
#: bitmaptabpage.ui
msgctxt ""
@@ -1334,14 +1331,13 @@ msgid "Size:"
msgstr "المقاس:"
#: bitmaptabpage.ui
-#, fuzzy
msgctxt ""
"bitmaptabpage.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "W:"
-msgstr "ع:"
+msgstr "عرض:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1350,7 +1346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "H:"
-msgstr ""
+msgstr "طول:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1368,7 +1364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position:"
-msgstr "الموقع:"
+msgstr "الموضع:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1458,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Position:"
-msgstr ""
+msgstr "موضع التبليط:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1467,7 +1463,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X:"
-msgstr ""
+msgstr "س:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1476,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y:"
-msgstr ""
+msgstr "ص:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1485,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tiling Offset:"
-msgstr ""
+msgstr "إزاحة التبليط:"
#: bitmaptabpage.ui
msgctxt ""
@@ -1494,7 +1490,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Row"
-msgstr ""
+msgstr "صف"
#: bitmaptabpage.ui
msgctxt ""
@@ -1503,7 +1499,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Column"
-msgstr ""
+msgstr "عمود"
#: bitmaptabpage.ui
msgctxt ""
@@ -1512,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Options"
-msgstr ""
+msgstr "الخيارات"
#: bitmaptabpage.ui
msgctxt ""
@@ -1521,7 +1517,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Example"
-msgstr ""
+msgstr "مثال"
#: bitmaptabpage.ui
msgctxt ""
@@ -1530,7 +1526,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "معاينة"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1557,7 +1553,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL vendor:"
-msgstr ""
+msgstr "الشركة:"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1584,7 +1580,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Blacklist Entry"
-msgstr ""
+msgstr "حرر مُدخل قائمة أوبن‌سي‌إل السوداء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1593,7 +1589,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Blacklist Entry"
-msgstr ""
+msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل السوداء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1602,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Whitelist Entry"
-msgstr ""
+msgstr "حرر مُدخل قائمة أوبن‌سي‌إل البيضاء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1611,7 +1607,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Whitelist Entry"
-msgstr ""
+msgstr "أضف مُدخل إلى قائمة أوبن‌سي‌إل البيضاء"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1620,7 +1616,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL Information"
-msgstr ""
+msgstr "معلومات أوبن‌سي‌إل"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1629,7 +1625,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Any"
-msgstr ""
+msgstr "أي واحد"
#: borderareatransparencydialog.ui
msgctxt ""
@@ -1710,7 +1706,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pr_esets:"
-msgstr ""
+msgstr "الإعدادات الجا_هزة:"
#: borderpage.ui
msgctxt ""
@@ -1719,7 +1715,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Adjacent Cells:"
-msgstr ""
+msgstr "الخلايا الم_تجاورة:"
#: borderpage.ui
msgctxt ""
@@ -1728,7 +1724,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove border"
-msgstr ""
+msgstr "أزل الحد"
#: borderpage.ui
msgctxt ""
@@ -1791,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Right:"
-msgstr "يمين:"
+msgstr "اليمين:"
#: borderpage.ui
msgctxt ""
@@ -1818,37 +1814,34 @@ msgctxt ""
"label\n"
"string.text"
msgid "Synchronize"
-msgstr "مزامنة"
+msgstr "زامِن"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label10\n"
"label\n"
"string.text"
msgid "Spacing to Contents"
-msgstr "المسافة حتى المحتويات"
+msgstr "المسافة إلى المحتويات"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label22\n"
"label\n"
"string.text"
msgid "_Position:"
-msgstr "الم_وضع"
+msgstr "الم_وضع:"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"distanceft\n"
"label\n"
"string.text"
msgid "Distan_ce:"
-msgstr "ال_مسافة"
+msgstr "ال_مسافة:"
#: borderpage.ui
msgctxt ""
@@ -1860,7 +1853,6 @@ msgid "C_olor:"
msgstr "ال_لون:"
#: borderpage.ui
-#, fuzzy
msgctxt ""
"borderpage.ui\n"
"label11\n"
@@ -1885,7 +1877,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Merge adjacent line styles"
-msgstr ""
+msgstr "ا_دمج طُرز الخطوط المتجاورة"
#: borderpage.ui
msgctxt ""
@@ -1894,7 +1886,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr "خصائص"
+msgstr "الخصائص"
#: breaknumberoption.ui
msgctxt ""
@@ -1906,27 +1898,24 @@ msgid "Hyphenation"
msgstr "فصل المقاطع"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"beforelabel\n"
"label\n"
"string.text"
msgid "Characters Before Break"
-msgstr "المحارف قبل الفاصل"
+msgstr "عدد الأحرف قبل الفاصل"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"afterlabel\n"
"label\n"
"string.text"
msgid "Characters After Break"
-msgstr "المحارف بعد الفاصل"
+msgstr "عدد الأحرف بعد الفاصل"
#: breaknumberoption.ui
-#, fuzzy
msgctxt ""
"breaknumberoption.ui\n"
"minimallabel\n"
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index d0f81bdcec5..ac5b77bd4f2 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-25 02:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5723,22 +5723,20 @@ msgid "Functions"
msgstr "دوال"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 88af6d7f963..680d2736179 100644
--- a/source/ar/helpcontent2/source/text/shared/optionen.po
+++ b/source/ar/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ar/sfx2/source/dialog.po b/source/ar/sfx2/source/dialog.po
index 0e2f71c4368..180727cbac1 100644
--- a/source/ar/sfx2/source/dialog.po
+++ b/source/ar/sfx2/source/dialog.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-19 13:43+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484833406.000000\n"
#: dialog.src
@@ -725,6 +725,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "هيكلي"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ar/sfx2/uiconfig/ui.po b/source/ar/sfx2/uiconfig/ui.po
index 3e01b180aa9..14bf0f85025 100644
--- a/source/ar/sfx2/uiconfig/ui.po
+++ b/source/ar/sfx2/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
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"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-06 22:52+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: none\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1488840765.000000\n"
#: alienwarndialog.ui
@@ -795,19 +795,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"إن %PRODUCTNAME متوفّر وفقا لشروط رخصة موزيلا العامة، الإصدارة الثانية. يمكن الحصول على نسخة من الرخصة على http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"يمكنك إيجاد إشعارات الحقوق وشروط الرخص الإضافية لنصوص الأطراف الثالثة والمطبّقة في أجزاء من البرمجية في ملف LICENSE.html، انقر \"أظهر الرخصة\" لترى التفاصيل الدقيقة بالإنجليزية.\n"
-"\n"
-"كل العلامات التجارية وتلك المسجلة أيضا المذكورة هنا ملك لأصحابها المعنيين.\n"
-"\n"
-"الحقوق محفوظة © 2000–2016 مساهمو ليبر أوفيس. جميع الحقوق محفوظة.\n"
-"\n"
-"أُنشأ هذا المنتج من %OOOVENDOR، وذلك بناء على أوبن‌أوفيس.أورغ، محفوظ الحقوق 2000، 2011 أوركال و/أو شركاتها التابعة. يشكر %OOOVENDOR كل أعضاء المجتمع، فضلا طالع http://www.libreoffice.org/ لتفاصيل أكثر."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ar/svtools/source/dialogs.po b/source/ar/svtools/source/dialogs.po
index f15a810db2b..7b649efdae7 100644
--- a/source/ar/svtools/source/dialogs.po
+++ b/source/ar/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-20 16:39+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1484930380.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "نص منسّق [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ar/svtools/source/misc.po b/source/ar/svtools/source/misc.po
index aa50404cddb..a611858b0f2 100644
--- a/source/ar/svtools/source/misc.po
+++ b/source/ar/svtools/source/misc.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-10 18:06+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489169206.000000\n"
#: imagemgr.src
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ar/svx/source/stbctrls.po b/source/ar/svx/source/stbctrls.po
index d6bce239cf1..4877091d198 100644
--- a/source/ar/svx/source/stbctrls.po
+++ b/source/ar/svx/source/stbctrls.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-02-15 20:13+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487189597.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "لائم الشّريحة إلى النّافذة الحاليّة."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ar/svx/uiconfig/ui.po b/source/ar/svx/uiconfig/ui.po
index 6c6b17b38bf..830a3d91769 100644
--- a/source/ar/svx/uiconfig/ui.po
+++ b/source/ar/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-16 03:55+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1489636530.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5078,20 +5078,20 @@ msgstr "أ_كمل في الوضع الآمن"
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
-msgstr "أ_نهِ"
+msgid "_Restart in Normal Mode"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
-msgstr "_طبّق التغييرات و أعد التشغيل"
+msgstr ""
#: safemodedialog.ui
msgctxt ""
diff --git a/source/ar/sw/uiconfig/swriter/ui.po b/source/ar/sw/uiconfig/swriter/ui.po
index c62f77230ca..14734e77a87 100644
--- a/source/ar/sw/uiconfig/swriter/ui.po
+++ b/source/ar/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: 2017-03-06 22:50+0000\n"
-"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
+"PO-Revision-Date: 2017-04-01 07:00+0000\n"
+"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: none\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1488840656.000000\n"
+"X-POOTLE-MTIME: 1491030012.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -9270,7 +9270,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "أدرِج صوت و فديو"
#: notebookbar.ui
msgctxt ""
@@ -10527,24 +10527,22 @@ msgid "Caption"
msgstr "واصفة"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Level:"
-msgstr "مستوى"
+msgstr "المستوى:"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "Separator:"
-msgstr "فاصل"
+msgstr "الفاصل"
#: optcaptionpage.ui
msgctxt ""
@@ -10566,14 +10564,13 @@ msgid "Numbering Captions by Chapter"
msgstr "ترقيم الواصفات لكل فصل"
#: optcaptionpage.ui
-#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Character style:"
-msgstr "نمط الأحرف"
+msgstr "نمط الأحرف:"
#: optcaptionpage.ui
msgctxt ""
@@ -13799,7 +13796,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Continue at the beginning?"
-msgstr ""
+msgstr "أأتابع من البداية؟"
#: querycontinuebegindialog.ui
msgctxt ""
@@ -13808,7 +13805,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to continue at the beginning?"
-msgstr ""
+msgstr "أتريد المتابعة من البداية؟"
#: querycontinuebegindialog.ui
msgctxt ""
@@ -13826,7 +13823,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Continue at the end?"
-msgstr ""
+msgstr "أأتابع من النهاية؟"
#: querycontinueenddialog.ui
msgctxt ""
@@ -13835,7 +13832,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to continue at the end?"
-msgstr ""
+msgstr "أتريد المتابعة من النهاية؟"
#: querycontinueenddialog.ui
msgctxt ""
@@ -14318,7 +14315,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add..."
-msgstr ""
+msgstr "أ_ضف..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14327,7 +14324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create..."
-msgstr ""
+msgstr "أ_نشئ..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14336,17 +14333,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Filter..."
-msgstr ""
+msgstr "ر_شّح..."
#: selectaddressdialog.ui
-#, fuzzy
msgctxt ""
"selectaddressdialog.ui\n"
"edit\n"
"label\n"
"string.text"
msgid "_Edit..."
-msgstr "تحرير"
+msgstr "_حرّر..."
#: selectaddressdialog.ui
msgctxt ""
@@ -14355,7 +14351,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change _Table..."
-msgstr ""
+msgstr "غيّر ال_جدول..."
#: selectaddressdialog.ui
msgctxt ""
diff --git a/source/as/cui/uiconfig/ui.po b/source/as/cui/uiconfig/ui.po
index 5135a591084..755591d3be7 100644
--- a/source/as/cui/uiconfig/ui.po
+++ b/source/as/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:47+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\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: 1476794877.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593303.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME শব্দ প্ৰক্ৰিয়াকৰণ, স্প্ৰেডশ্বীটসমূহ, পৰিৱেশন আৰু অধিকৰ বাবে এটা আধুনিক, সহজতে-ব্যৱহাৰকৰিব পৰা, মুক্ত উৎস উৎপাদন চুইট।"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "স্বত্বাধিকাৰ ©২০০০-২০১৪ LibreOffice অৱদানকাৰীসকল।"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/as/sfx2/source/dialog.po b/source/as/sfx2/source/dialog.po
index e2e78294009..521c94bf6ed 100644
--- a/source/as/sfx2/source/dialog.po
+++ b/source/as/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
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-03-10 16:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457626599.000000\n"
+"X-POOTLE-MTIME: 1478888209.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ওপৰৰ পৰা তললৈকে ক্ৰমানুসাৰে"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/as/sfx2/uiconfig/ui.po b/source/as/sfx2/uiconfig/ui.po
index b3ab7e5972e..97bff2af162 100644
--- a/source/as/sfx2/uiconfig/ui.po
+++ b/source/as/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 16:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\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: 1467650708.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595687.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -801,7 +801,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/as/svtools/source/dialogs.po b/source/as/svtools/source/dialogs.po
index ec79b13bdd1..b3a55c6cd8d 100644
--- a/source/as/svtools/source/dialogs.po
+++ b/source/as/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:36+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
"Language: as\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-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440531397.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "ফৰমেট কৰি থোৱা টেক্সট [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/as/svtools/source/misc.po b/source/as/svtools/source/misc.po
index 1a81aca7765..c965ac8bfc7 100644
--- a/source/as/svtools/source/misc.po
+++ b/source/as/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
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-05-08 08:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462696034.000000\n"
+"X-POOTLE-MTIME: 1478888824.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3891,6 +3891,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/as/svx/source/stbctrls.po b/source/as/svx/source/stbctrls.po
index 0fca13e44ed..d77673854aa 100644
--- a/source/as/svx/source/stbctrls.po
+++ b/source/as/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
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: 2015-12-11 14:59+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
"Language: as\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845950.000000\n"
+"X-POOTLE-MTIME: 1478889867.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/as/svx/uiconfig/ui.po b/source/as/svx/uiconfig/ui.po
index 8064b02c0b8..341e6f1ddf5 100644
--- a/source/as/svx/uiconfig/ui.po
+++ b/source/as/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5086,16 +5086,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ast/cui/uiconfig/ui.po b/source/ast/cui/uiconfig/ui.po
index 1ce563410a2..c5f4aa58ad2 100644
--- a/source/ast/cui/uiconfig/ui.po
+++ b/source/ast/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ast\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: 1476794929.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593267.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME ye una suite de productividá moderna, cenciella d'usar y de códigu abiertu, pa procesar testu, fueyes de cálculu, presentaciones y más."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000–2014 collaboradores de LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 9ce6f744cc3..02a58eff9f7 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
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-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 18:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -5721,22 +5721,20 @@ msgid "Functions"
msgstr "Funciones"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 0caef59837d..28f80eaebd9 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/ast/sfx2/source/dialog.po b/source/ast/sfx2/source/dialog.po
index 14b50bb8787..661b91f814a 100644
--- a/source/ast/sfx2/source/dialog.po
+++ b/source/ast/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 18:48+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457635713.000000\n"
+"X-POOTLE-MTIME: 1478888927.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Xerárquicu"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/ast/sfx2/uiconfig/ui.po b/source/ast/sfx2/uiconfig/ui.po
index 59cbcece5df..f747662c7cb 100644
--- a/source/ast/sfx2/uiconfig/ui.po
+++ b/source/ast/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-22 15:10+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: ast\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: 1479827454.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595753.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -790,7 +790,6 @@ msgid "_Show License"
msgstr "_Amosar la llicencia"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -803,19 +802,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME ta disponible suxetu a los términos de la Llicencia Pública de Mozilla, v. 2.0. Pue alcontrar una copia de la llicencia en http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Otros avisos de copyright del códigu de terceros y les condiciones de llicencia aplicables a porciones del software descríbense nel ficheru LICENSE.html; escueya «Amosar la llicencia» pa ver los detalles exactos n'inglés.\n"
-"\n"
-"Toles marques comerciales que se mencionen, rexistraes o non, son propiedá de los dueños respeutivos.\n"
-"\n"
-"Copyright © 2000–2014 de los collaboradores de LibreOffice. Tolos drechos acutaos.\n"
-"\n"
-"Esti productu creóse por %OOOVENDOR, basáu en OpenOffice.org, que tien Copyright 2000, 2011 de Oracle y/o los sos afiliaos. %OOOVENDOR reconoz a tolos miembros de la comunidá; por favor, vea http://www.libreoffice.org/ pa más detalles."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/ast/svtools/source/dialogs.po b/source/ast/svtools/source/dialogs.po
index d13901fe97b..c010ee219d1 100644
--- a/source/ast/svtools/source/dialogs.po
+++ b/source/ast/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:32+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\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-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440531157.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testu formatiáu [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/ast/svtools/source/misc.po b/source/ast/svtools/source/misc.po
index 39086a0bb9f..30f7ea4333e 100644
--- a/source/ast/svtools/source/misc.po
+++ b/source/ast/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 08:37+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462696653.000000\n"
+"X-POOTLE-MTIME: 1478889547.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/ast/svx/source/stbctrls.po b/source/ast/svx/source/stbctrls.po
index 8753a702104..6f353db75cd 100644
--- a/source/ast/svx/source/stbctrls.po
+++ b/source/ast/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2015-12-11 14:53+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845629.000000\n"
+"X-POOTLE-MTIME: 1478890584.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/ast/svx/uiconfig/ui.po b/source/ast/svx/uiconfig/ui.po
index 264915c9d6c..1180aba3808 100644
--- a/source/ast/svx/uiconfig/ui.po
+++ b/source/ast/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5105,16 +5105,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/be/basctl/source/basicide.po b/source/be/basctl/source/basicide.po
index e5672635f98..671c224214a 100644
--- a/source/be/basctl/source/basicide.po
+++ b/source/be/basctl/source/basicide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: basicide\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-03-29 14:52+0000\n"
+"PO-Revision-Date: 2017-03-30 08:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799134.000000\n"
+"X-POOTLE-MTIME: 1490861844.000000\n"
#: basicprint.src
msgctxt ""
@@ -745,13 +745,12 @@ msgid "Modules..."
msgstr "Модулі..."
#: basidesh.src
-#, fuzzy
msgctxt ""
"basidesh.src\n"
"RID_STR_REMOVEWATCHTIP\n"
"string.text"
msgid "Remove Watch"
-msgstr "Remove Watch"
+msgstr "Выдаліць назіральніка"
#: basidesh.src
msgctxt ""
diff --git a/source/be/basctl/uiconfig/basicide/ui.po b/source/be/basctl/uiconfig/basicide/ui.po
index 173d7892b70..5e797d588e7 100644
--- a/source/be/basctl/uiconfig/basicide/ui.po
+++ b/source/be/basctl/uiconfig/basicide/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\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: 2017-03-29 14:55+0000\n"
+"PO-Revision-Date: 2017-03-30 08:17+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799340.000000\n"
+"X-POOTLE-MTIME: 1490861865.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -386,14 +386,13 @@ msgid "_Export..."
msgstr "_Экспартаваць..."
#: managebreakpoints.ui
-#, fuzzy
msgctxt ""
"managebreakpoints.ui\n"
"ManageBreakpointsDialog\n"
"title\n"
"string.text"
msgid "Manage Breakpoints"
-msgstr "Manage Breakpoints"
+msgstr "Кіраваць перапынкамі"
#: managebreakpoints.ui
msgctxt ""
@@ -414,14 +413,13 @@ msgid "Pass count:"
msgstr "Колькасць праходаў:"
#: managebreakpoints.ui
-#, fuzzy
msgctxt ""
"managebreakpoints.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Breakpoints"
-msgstr "Breakpoints"
+msgstr "Перапынкі"
#: managelanguages.ui
msgctxt ""
@@ -478,7 +476,6 @@ msgid "M_odule:"
msgstr "М_одуль:"
#: modulepage.ui
-#, fuzzy
msgctxt ""
"modulepage.ui\n"
"newmodule\n"
diff --git a/source/be/basic/source/classes.po b/source/be/basic/source/classes.po
index 43f92649cc6..7eca78c52b2 100644
--- a/source/be/basic/source/classes.po
+++ b/source/be/basic/source/classes.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: classes\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: 2017-03-29 14:58+0000\n"
+"PO-Revision-Date: 2017-03-30 10:15+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490799530.000000\n"
+"X-POOTLE-MTIME: 1490868929.000000\n"
#: sb.src
msgctxt ""
@@ -233,7 +233,6 @@ msgid "File already open."
msgstr "Файл ужо адкрыты."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -243,7 +242,6 @@ msgid "Device I/O error."
msgstr "Памылка ўводу ці вываду з прыстасавання."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -253,7 +251,6 @@ msgid "File already exists."
msgstr "Файл ужо існуе."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -263,7 +260,6 @@ msgid "Incorrect record length."
msgstr "Няправільная даўжыня запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -273,7 +269,6 @@ msgid "Disk or hard drive full."
msgstr "Дыск (ці дыскета) поўны."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -283,7 +278,6 @@ msgid "Reading exceeds EOF."
msgstr "Чытанне перасягае EOF."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -293,7 +287,6 @@ msgid "Incorrect record number."
msgstr "Няправільны нумар запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -303,7 +296,6 @@ msgid "Too many files."
msgstr "Занадта многа файлаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -313,7 +305,6 @@ msgid "Device not available."
msgstr "Прыстасаванне не прысутнае."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -323,7 +314,6 @@ msgid "Access denied."
msgstr "Не дазволены доступ."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -333,7 +323,6 @@ msgid "Disk not ready."
msgstr "Не гатовы дыск."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -343,7 +332,6 @@ msgid "Not implemented."
msgstr "Не рэалізавана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -353,7 +341,6 @@ msgid "Renaming on different drives impossible."
msgstr "Немагчыма мяняць назву па-над рознымі дыскамі."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -363,7 +350,6 @@ msgid "Path/File access error."
msgstr "Памылка дасягання каталогу ці файла."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -373,7 +359,6 @@ msgid "Path not found."
msgstr "Не знойдзены шлях."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -383,7 +368,6 @@ msgid "Object variable not set."
msgstr "Не настаўлена аб'ектавая зменная."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -393,7 +377,6 @@ msgid "Invalid string pattern."
msgstr "Няправільны ўзор радка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -403,7 +386,6 @@ msgid "Use of zero not permitted."
msgstr "Не дазваляецца ўжыванне нуля."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -413,7 +395,6 @@ msgid "DDE Error."
msgstr "Памылка DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -423,7 +404,6 @@ msgid "Awaiting response to DDE connection."
msgstr "Чакаецца водгук на спробу далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -433,7 +413,6 @@ msgid "No DDE channels available."
msgstr "Няма наяўных каналаў DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -443,7 +422,6 @@ msgid "No application responded to DDE connect initiation."
msgstr "Ніякія праграмы не адгукаюцца на ініцыяцыю далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -453,7 +431,6 @@ msgid "Too many applications responded to DDE connect initiation."
msgstr "Занадта многа праграм адгукнуліся на ініцыяцыю далучэння DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -463,7 +440,6 @@ msgid "DDE channel locked."
msgstr "Канал DDE замкнуты."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -473,7 +449,6 @@ msgid "External application cannot execute DDE operation."
msgstr "Вонкавая праграма няздольная выканаць аперацыю DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -483,7 +458,6 @@ msgid "Timeout while waiting for DDE response."
msgstr "Таймаут пры чаканні водгуку DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -493,7 +467,6 @@ msgid "User pressed ESCAPE during DDE operation."
msgstr "У час аперацыі DDE была націснута клавіша \"Escape\"."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -503,7 +476,6 @@ msgid "External application busy."
msgstr "Вонкавая праграма занятая."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -513,7 +485,6 @@ msgid "DDE operation without data."
msgstr "Аперацыя DDE без даных."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -523,7 +494,6 @@ msgid "Data are in wrong format."
msgstr "Няправільны фармат даных."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -533,7 +503,6 @@ msgid "External application has been terminated."
msgstr "Вонкавая праграма была спынена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -543,7 +512,6 @@ msgid "DDE connection interrupted or modified."
msgstr "Далучэнне DDE перапынена або зменена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -553,17 +521,15 @@ msgid "DDE method invoked with no channel open."
msgstr "Метад DDE выкліканы без адкрытага канала."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_INVALID_LINK & ERRCODE_RES_MASK\n"
"string.text"
msgid "Invalid DDE link format."
-msgstr "Неправільны фармат спасылкі DDE."
+msgstr "Няправільны фармат спасылкі DDE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -573,7 +539,6 @@ msgid "DDE message has been lost."
msgstr "Паведамленне DDE было згублена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -583,37 +548,33 @@ msgid "Paste link already performed."
msgstr "Ужо здзейснена ўстаўлянне спасылкі."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_LINK_INV_TOPIC & ERRCODE_RES_MASK\n"
"string.text"
msgid "Link mode cannot be set due to invalid link topic."
-msgstr "Немагчыма змяніць лад спасылкі, з-за недапушчальнай тэмы (topic) спасылкі."
+msgstr "Немагчыма змяніць рэжым спасылкі з-за няправільнай тэмы."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_DLL_NOT_FOUND & ERRCODE_RES_MASK\n"
"string.text"
msgid "DDE requires the DDEML.DLL file."
-msgstr "Дзеля DDE патрабуецца файл DDEML.DLL."
+msgstr "DDE патрабуе файл DDEML.DLL."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_CANNOT_LOAD & ERRCODE_RES_MASK\n"
"string.text"
msgid "Module cannot be loaded; invalid format."
-msgstr "Модуль немагчыма прачытаць, з-за недапушчальнага фармату."
+msgstr "Немагчыма прачытаць модуль; няправільны фармат."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -623,17 +584,15 @@ msgid "Invalid object index."
msgstr "Недапушчальны індэкс аб'екта."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_NO_ACTIVE_OBJECT & ERRCODE_RES_MASK\n"
"string.text"
msgid "Object is not available."
-msgstr "Аб'ект не наяўны."
+msgstr "Аб'ект недаступны."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -643,27 +602,24 @@ msgid "Incorrect property value."
msgstr "Няправільнае значэнне ўласцівасці."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_PROP_READONLY & ERRCODE_RES_MASK\n"
"string.text"
msgid "This property is read-only."
-msgstr "Гэта ўласцівасць з'яўляецца толькі-чытанай."
+msgstr "Гэта ўласцівасць толькі для чытання."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_PROP_WRITEONLY & ERRCODE_RES_MASK\n"
"string.text"
msgid "This property is write only."
-msgstr "Гэта ўласцівасць толькі дзеля запісу."
+msgstr "Гэта ўласцівасць толькі для запісу."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -673,7 +629,6 @@ msgid "Invalid object reference."
msgstr "Недапушчальная спасылка на аб'ект."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -683,7 +638,6 @@ msgid "Property or method not found: $(ARG1)."
msgstr "Не знойдзена ўласцівасць ці метад: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -693,7 +647,6 @@ msgid "Object required."
msgstr "Патрабуецца аб'ект."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -703,7 +656,6 @@ msgid "Invalid use of an object."
msgstr "Няправільнае выкарыстанне аб'екта."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -713,7 +665,6 @@ msgid "OLE Automation is not supported by this object."
msgstr "Аўтаматызацыя OLE не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -723,7 +674,6 @@ msgid "This property or method is not supported by the object."
msgstr "Гэта ўласцівасць ці метад не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -733,7 +683,6 @@ msgid "OLE Automation Error."
msgstr "Памылка аўтаматызацыі OLE."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -743,7 +692,6 @@ msgid "This action is not supported by given object."
msgstr "Гэта дзеянне не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -753,17 +701,15 @@ msgid "Named arguments are not supported by given object."
msgstr "Называныя аргументы не падтрымліваюцца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_BAD_LOCALE & ERRCODE_RES_MASK\n"
"string.text"
msgid "The current locale setting is not supported by the given object."
-msgstr "Актыўнае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам."
+msgstr "Бягучае настаўленне лакальнасці не падтрымліваецца гэтым аб'ектам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -773,17 +719,15 @@ msgid "Named argument not found."
msgstr "Называны аргумент не знойдзены."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_NOT_OPTIONAL & ERRCODE_RES_MASK\n"
"string.text"
msgid "Argument is not optional."
-msgstr "Аргумент не з'яўляецца неабавязковым."
+msgstr "Аргумент абавязковы."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -793,7 +737,6 @@ msgid "Invalid number of arguments."
msgstr "Няправільная колькасць аргументаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -803,7 +746,6 @@ msgid "Object is not a list."
msgstr "Гэты аб'ект не з'яўляецца спісам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -813,7 +755,6 @@ msgid "Invalid ordinal number."
msgstr "Недапушчальны парадкавы нумар."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -823,7 +764,6 @@ msgid "Specified DLL function not found."
msgstr "Азначаная функцыя DLL не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -833,7 +773,6 @@ msgid "Invalid clipboard format."
msgstr "Недапушчальны фармат абменніка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -843,27 +782,24 @@ msgid "Object does not have this property."
msgstr "Гэты аб'ект не ўтрымлівае гэтай уласцівасці."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_METHOD_NOT_FOUND & ERRCODE_RES_MASK\n"
"string.text"
msgid "Object does not have this method."
-msgstr "Гэты аб'ект не ўтрымлівае гэтага метада."
+msgstr "Гэты аб'ект не ўтрымлівае гэтага метаду."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_ARG_MISSING & ERRCODE_RES_MASK\n"
"string.text"
msgid "Required argument lacking."
-msgstr "Адсутнічае патрабаваны аргумент."
+msgstr "Адсутнічае абавязковы аргумент."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -873,17 +809,15 @@ msgid "Invalid number of arguments."
msgstr "Няправільная колькасць аргументаў."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_METHOD_FAILED & ERRCODE_RES_MASK\n"
"string.text"
msgid "Error executing a method."
-msgstr "Памылка пры выкананні метада."
+msgstr "Памылка пры выкананні метаду."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -893,7 +827,6 @@ msgid "Unable to set property."
msgstr "Немагчыма наставіць уласцівасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -903,7 +836,6 @@ msgid "Unable to determine property."
msgstr "Немагчыма вызначыць уласцівасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -913,7 +845,6 @@ msgid "Unexpected symbol: $(ARG1)."
msgstr "Нечаканы сімвал: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -923,7 +854,6 @@ msgid "Expected: $(ARG1)."
msgstr "Чакалася: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -933,7 +863,6 @@ msgid "Symbol expected."
msgstr "Чакаўся сімвал."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -943,7 +872,6 @@ msgid "Variable expected."
msgstr "Чакалася зменная."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -953,7 +881,6 @@ msgid "Label expected."
msgstr "Чакалася метка."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -963,7 +890,6 @@ msgid "Value cannot be applied."
msgstr "Немагчыма ўжыць гэта значэнне."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -973,7 +899,6 @@ msgid "Variable $(ARG1) already defined."
msgstr "Зменная $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -983,7 +908,6 @@ msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Працэдура (\"sub\" ці \"function\") $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -993,7 +917,6 @@ msgid "Label $(ARG1) already defined."
msgstr "Метка $(ARG1) ужо вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1003,7 +926,6 @@ msgid "Variable $(ARG1) not found."
msgstr "Зменная $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1013,7 +935,6 @@ msgid "Array or procedure $(ARG1) not found."
msgstr "Масіў ці працэдура $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1023,7 +944,6 @@ msgid "Procedure $(ARG1) not found."
msgstr "Працэдура $(ARG1) не знойдзена."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1033,7 +953,6 @@ msgid "Label $(ARG1) undefined."
msgstr "Метка $(ARG1) не вызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1043,7 +962,6 @@ msgid "Unknown data type $(ARG1)."
msgstr "Невядомы тып даных $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1053,7 +971,6 @@ msgid "Exit $(ARG1) expected."
msgstr "Чакалася Exit $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1063,7 +980,6 @@ msgid "Statement block still open: $(ARG1) missing."
msgstr "Блок сцвярджэння застаецца адкрытым: не хапае $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1073,7 +989,6 @@ msgid "Parentheses do not match."
msgstr "Дужкі ўзаемна не адпаведныя."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1083,7 +998,6 @@ msgid "Symbol $(ARG1) already defined differently."
msgstr "Сімвал $(ARG1) ужо вызначаны іншым чынам."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1093,7 +1007,6 @@ msgid "Parameters do not correspond to procedure."
msgstr "Параметры не адпавядаюць працэдуры."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1103,17 +1016,15 @@ msgid "Invalid character in number."
msgstr "Недапушчальны знак у ліку."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_MUST_HAVE_DIMS & ERRCODE_RES_MASK\n"
"string.text"
msgid "Array must be dimensioned."
-msgstr "Масіў мусіць мець вымярэнне(-і)."
+msgstr "Масіў мусіць мець вымернасць."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1123,7 +1034,6 @@ msgid "Else/Endif without If."
msgstr "Else/Endif без If."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1133,7 +1043,6 @@ msgid "$(ARG1) not allowed within a procedure."
msgstr "Не дазваляецца $(ARG1) у працэдуры."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1143,7 +1052,6 @@ msgid "$(ARG1) not allowed outside a procedure."
msgstr "Не дазваляецца $(ARG1) па-за працэдурай."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1153,17 +1061,15 @@ msgid "Dimension specifications do not match."
msgstr "Вызначэнні вымярэнняў узаемна не адпаведныя."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_BAD_OPTION & ERRCODE_RES_MASK\n"
"string.text"
msgid "Unknown option: $(ARG1)."
-msgstr "Невядомая магчымасць: $(ARG1)."
+msgstr "Невядомы параметр: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1173,7 +1079,6 @@ msgid "Constant $(ARG1) redefined."
msgstr "Канстанта $(ARG1) перавызначана."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1183,7 +1088,6 @@ msgid "Program too large."
msgstr "Праграма занадта вялікая."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
diff --git a/source/be/chart2/source/controller/dialogs.po b/source/be/chart2/source/controller/dialogs.po
index b5a1f973da2..4ffdc0457df 100644
--- a/source/be/chart2/source/controller/dialogs.po
+++ b/source/be/chart2/source/controller/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: dialogs\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-05-15 05:43+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:32+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1400132584.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491327163.000000\n"
#: Strings.src
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"STR_OBJECT_MOVING_AVERAGE_WITH_PARAMETERS\n"
"string.text"
msgid "Moving average trend line with period = %PERIOD"
-msgstr ""
+msgstr "Слізгальная сярэдняя лінія трэнду з перыядам = %PERIOD"
#: Strings.src
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"STR_ACTION_TOGGLE_GRID_HORZ\n"
"string.text"
msgid "Horizontal grid major/major&minor/off"
-msgstr ""
+msgstr "Гарызантальная сетка галоўная/галоўная+дадатковая/выкл."
#: Strings.src
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"STR_ACTION_TOGGLE_GRID_VERTICAL\n"
"string.text"
msgid "Vertical grid major/major&minor/off"
-msgstr ""
+msgstr "Вертыкальная сетка галоўная/галоўная+дадатковая/выкл."
#: Strings.src
msgctxt ""
@@ -1010,7 +1010,7 @@ msgctxt ""
"STR_PROPERTY_ROLE_FILLCOLOR\n"
"string.text"
msgid "Fill Color"
-msgstr ""
+msgstr "Колер запаўнення"
#: Strings.src
msgctxt ""
@@ -1018,7 +1018,7 @@ msgctxt ""
"STR_PROPERTY_ROLE_BORDERCOLOR\n"
"string.text"
msgid "Border Color"
-msgstr ""
+msgstr "Колер аблямоўкі"
#: Strings_AdditionalControls.src
msgctxt ""
@@ -1266,7 +1266,7 @@ msgctxt ""
"STR_TYPE_GL3D_BAR\n"
"string.text"
msgid "GL3D Bar"
-msgstr ""
+msgstr "Брусок GL3D"
#: Strings_ChartTypes.src
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"STR_GL3D_BAR\n"
"string.text"
msgid "GL3D Bar Chart"
-msgstr ""
+msgstr "Брусковая дыяграма GL3D"
#: Strings_Scale.src
msgctxt ""
@@ -1362,7 +1362,7 @@ msgctxt ""
"STR_REGRESSION_LINEAR\n"
"string.text"
msgid "Linear"
-msgstr ""
+msgstr "Лінейная"
#: Strings_Statistic.src
msgctxt ""
@@ -1370,7 +1370,7 @@ msgctxt ""
"STR_REGRESSION_LOG\n"
"string.text"
msgid "Logarithmic"
-msgstr ""
+msgstr "Лагарыфмічная"
#: Strings_Statistic.src
msgctxt ""
@@ -1378,7 +1378,7 @@ msgctxt ""
"STR_REGRESSION_EXP\n"
"string.text"
msgid "Exponential"
-msgstr ""
+msgstr "Экспанентная"
#: Strings_Statistic.src
msgctxt ""
@@ -1386,7 +1386,7 @@ msgctxt ""
"STR_REGRESSION_POWER\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Ступенная"
#: Strings_Statistic.src
msgctxt ""
@@ -1394,7 +1394,7 @@ msgctxt ""
"STR_REGRESSION_POLYNOMIAL\n"
"string.text"
msgid "Polynomial"
-msgstr ""
+msgstr "Паліномная"
#: Strings_Statistic.src
msgctxt ""
@@ -1402,7 +1402,7 @@ msgctxt ""
"STR_REGRESSION_MOVING_AVERAGE\n"
"string.text"
msgid "Moving average"
-msgstr ""
+msgstr "Слізгальнае сярэдняе"
#: Strings_Statistic.src
msgctxt ""
@@ -1410,4 +1410,4 @@ msgctxt ""
"STR_REGRESSION_MEAN\n"
"string.text"
msgid "Mean"
-msgstr ""
+msgstr "Сярэдняе"
diff --git a/source/be/chart2/uiconfig/ui.po b/source/be/chart2/uiconfig/ui.po
index 97dab135784..9e550ad2650 100644
--- a/source/be/chart2/uiconfig/ui.po
+++ b/source/be/chart2/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\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 19:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-12 15:09+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462129630.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492009774.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "3D View"
-msgstr ""
+msgstr "Трохмерны від"
#: chardialog.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Character"
-msgstr ""
+msgstr "Знак"
#: chardialog.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font"
-msgstr ""
+msgstr "Шрыфт"
#: chardialog.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font Effects"
-msgstr ""
+msgstr "Шрыфтавыя эфекты"
#: chardialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Position"
-msgstr ""
+msgstr "Месца"
#: chartdatadialog.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Table"
-msgstr ""
+msgstr "Табліца даных"
#: chartdatadialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Row"
-msgstr ""
+msgstr "Уставіць радок"
#: chartdatadialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Series"
-msgstr ""
+msgstr "Уставіць выбарку"
#: chartdatadialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Text Column"
-msgstr ""
+msgstr "Уставіць тэкставую калонку"
#: chartdatadialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Row"
-msgstr ""
+msgstr "Выдаліць радок"
#: chartdatadialog.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Series"
-msgstr ""
+msgstr "Выдаліць выбарку"
#: chartdatadialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Series Right"
-msgstr ""
+msgstr "Пасунуць выбарку ўправа"
#: chartdatadialog.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Row Down"
-msgstr ""
+msgstr "Пасунуць радок уніз"
#: charttypedialog.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Chart Type"
-msgstr ""
+msgstr "Тып дыяграмы"
#: datarangedialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Ranges"
-msgstr ""
+msgstr "Абсягі даных"
#: dlg_DataLabel.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Data Labels for all Data Series"
-msgstr ""
+msgstr "Меткі даных для ўсіх выбарак"
#: dlg_DataLabel.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show value as _number"
-msgstr ""
+msgstr "Паказаць значэнне як лічбу"
#: dlg_DataLabel.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show value as _percentage"
-msgstr ""
+msgstr "Паказаць значэнне як працэнт"
#: dlg_DataLabel.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _category"
-msgstr ""
+msgstr "Паказаць _катэгорыю"
#: dlg_DataLabel.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show _legend key"
-msgstr ""
+msgstr "Паказаць ключ леген_ды"
#: dlg_DataLabel.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto text _wrap"
-msgstr ""
+msgstr "Пераносіць па словах"
#: dlg_DataLabel.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number _format..."
-msgstr ""
+msgstr "Фармат лікаў..."
#: dlg_DataLabel.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Percentage f_ormat..."
-msgstr ""
+msgstr "Фармат працэнта_ў..."
#: dlg_DataLabel.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ABCD"
-msgstr ""
+msgstr "ABCD"
#: dlg_DataLabel.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Separator"
-msgstr ""
+msgstr "Межнік"
#: dlg_DataLabel.ui
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Place_ment"
-msgstr ""
+msgstr "Месца"
#: dlg_DataLabel.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number Format for Percentage Value"
-msgstr ""
+msgstr "Фармат працэнтавых значэнняў"
#: dlg_DataLabel.ui
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text Attributes"
-msgstr ""
+msgstr "Атрыбуты тэксту"
#: dlg_DataLabel.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Degrees"
-msgstr ""
+msgstr "градусаў"
#: dlg_DataLabel.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt direction"
-msgstr ""
+msgstr "Кірунак тэксту"
#: dlg_DataLabel.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rotate Text"
-msgstr ""
+msgstr "Павярнуць тэкст"
#: dlg_DataLabel.ui
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Best fit"
-msgstr ""
+msgstr "Дапасаваць як найлепш"
#: dlg_DataLabel.ui
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Center"
-msgstr ""
+msgstr "У цэнтры"
#: dlg_DataLabel.ui
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Above"
-msgstr ""
+msgstr "Над"
#: dlg_DataLabel.ui
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Top left"
-msgstr ""
+msgstr "Верхні левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Left"
-msgstr ""
+msgstr "Левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Bottom left"
-msgstr ""
+msgstr "Ніжні левы"
#: dlg_DataLabel.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Inside"
-msgstr ""
+msgstr "Усярэдзіне"
#: dlg_DataLabel.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"11\n"
"stringlist.text"
msgid "Outside"
-msgstr ""
+msgstr "Звонку"
#: dlg_DataLabel.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Space"
-msgstr ""
+msgstr "Прабел"
#: dlg_DataLabel.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Comma"
-msgstr ""
+msgstr "Коска"
#: dlg_DataLabel.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Semicolon"
-msgstr ""
+msgstr "Кропка з коскай"
#: dlg_DataLabel.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "New line"
-msgstr ""
+msgstr "Новы радок"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Legend"
-msgstr ""
+msgstr "Легенда"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_None"
-msgstr ""
+msgstr "_Няма"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_ositive (+)"
-msgstr ""
+msgstr "Дадатны (+)"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select data range"
-msgstr ""
+msgstr "Выберыце абсяг даных"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Negative (-)"
-msgstr ""
+msgstr "Адмоўны (-)"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select data range"
-msgstr ""
+msgstr "Выберыце абсяг даных"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Parameters"
-msgstr ""
+msgstr "Параметры"
#: dlg_InsertErrorBars.ui
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: insertaxisdlg.ui
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: insertaxisdlg.ui
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: insertaxisdlg.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: insertaxisdlg.ui
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: insertaxisdlg.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: insertaxisdlg.ui
msgctxt ""
@@ -788,7 +788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axi_s"
-msgstr ""
+msgstr "Вось Z"
#: insertaxisdlg.ui
msgctxt ""
@@ -797,7 +797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr ""
+msgstr "Другасныя восі"
#: insertgriddlg.ui
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Grids"
-msgstr ""
+msgstr "Рашоткі"
#: insertgriddlg.ui
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: insertgriddlg.ui
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: insertgriddlg.ui
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: insertgriddlg.ui
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Major Grids"
-msgstr ""
+msgstr "Асноўныя рашоткі"
#: insertgriddlg.ui
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: insertgriddlg.ui
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: insertgriddlg.ui
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axi_s"
-msgstr ""
+msgstr "Вось Z"
#: insertgriddlg.ui
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minor Grids"
-msgstr ""
+msgstr "Дадатковыя рашоткі"
#: inserttitledlg.ui
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X axis"
-msgstr ""
+msgstr "Вось _X"
#: inserttitledlg.ui
msgctxt ""
@@ -923,7 +923,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y axis"
-msgstr ""
+msgstr "Вось _Y"
#: inserttitledlg.ui
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z axis"
-msgstr ""
+msgstr "Вось _Z"
#: inserttitledlg.ui
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: inserttitledlg.ui
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X _axis"
-msgstr ""
+msgstr "Вось X"
#: inserttitledlg.ui
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y ax_is"
-msgstr ""
+msgstr "Вось Y"
#: inserttitledlg.ui
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secondary Axes"
-msgstr ""
+msgstr "Другасныя восі"
#: paradialog.ui
msgctxt ""
@@ -977,7 +977,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Paragraph"
-msgstr ""
+msgstr "Параграф"
#: paradialog.ui
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indents & Spacing"
-msgstr ""
+msgstr "Водступы і інтэрвалы"
#: paradialog.ui
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Alignment"
-msgstr ""
+msgstr "Раўнаванне"
#: paradialog.ui
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Asian Typography"
-msgstr ""
+msgstr "Азіяцкі лад друку"
#: paradialog.ui
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tabs"
-msgstr ""
+msgstr "Табуляцыі"
#: sidebaraxis.ui
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show labels"
-msgstr ""
+msgstr "Паказаць подпісы"
#: sidebaraxis.ui
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reverse direction"
-msgstr ""
+msgstr "Адваротны кірунак"
#: sidebaraxis.ui
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Label position:"
-msgstr ""
+msgstr "Месца по_дпісу:"
#: sidebaraxis.ui
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Near Axis"
-msgstr ""
+msgstr "Каля восі"
#: sidebaraxis.ui
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Near Axis (other side)"
-msgstr ""
+msgstr "Каля восі (з другога боку)"
#: sidebaraxis.ui
msgctxt ""
@@ -1121,7 +1121,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Legend"
-msgstr ""
+msgstr "Паказаць легенду"
#: sidebarelements.ui
msgctxt ""
@@ -1184,7 +1184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Legend"
-msgstr ""
+msgstr "Легенда"
#: sidebarelements.ui
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis"
-msgstr ""
+msgstr "Вось X"
#: sidebarelements.ui
msgctxt ""
@@ -1202,7 +1202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis title"
-msgstr ""
+msgstr "Назва на восі X"
#: sidebarelements.ui
msgctxt ""
@@ -1211,7 +1211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis"
-msgstr ""
+msgstr "Вось Y"
#: sidebarelements.ui
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis title"
-msgstr ""
+msgstr "Назва на восі Y"
#: sidebarelements.ui
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis"
-msgstr ""
+msgstr "Вось Z"
#: sidebarelements.ui
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis title"
-msgstr ""
+msgstr "Назва на восі Z"
#: sidebarelements.ui
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Axes"
-msgstr ""
+msgstr "Восі"
#: sidebarelements.ui
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal major"
-msgstr ""
+msgstr "Гарызантальная асн."
#: sidebarelements.ui
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical major"
-msgstr ""
+msgstr "Вертыкальная асн."
#: sidebarelements.ui
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal minor"
-msgstr ""
+msgstr "Гарызантальная дап."
#: sidebarelements.ui
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical minor"
-msgstr ""
+msgstr "Вертыкальная дап."
#: sidebarelements.ui
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Gridlines"
-msgstr ""
+msgstr "Лініі рашоткі"
#: sidebarelements.ui
msgctxt ""
@@ -1337,7 +1337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Title"
-msgstr ""
+msgstr "Загаловак"
#: sidebarelements.ui
msgctxt ""
@@ -1346,7 +1346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Subtitle"
-msgstr ""
+msgstr "Падзагаловак"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1355,7 +1355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Category:"
-msgstr ""
+msgstr "Катэгорыя:"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1364,7 +1364,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Constant"
-msgstr ""
+msgstr "Канстанта"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1427,7 +1427,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Positive (+):"
-msgstr ""
+msgstr "Дадатна (+)"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Negative (-):"
-msgstr ""
+msgstr "Адмоўна (-)"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.00"
-msgstr ""
+msgstr "0,00"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "0.00"
-msgstr ""
+msgstr "0,00"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Positive and Negative"
-msgstr ""
+msgstr "Дадатныя і адмоўныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Positive"
-msgstr ""
+msgstr "Дадатныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Negative"
-msgstr ""
+msgstr "Адмоўныя"
#: sidebarerrorbar.ui
msgctxt ""
@@ -1490,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indicator"
-msgstr ""
+msgstr "Індыкатар"
#: sidebarseries.ui
msgctxt ""
@@ -1562,7 +1562,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Near origin"
-msgstr ""
+msgstr "Каля пачатку каардынат"
#: sidebarseries.ui
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show trendline"
-msgstr ""
+msgstr "Паказаць лінію трэнду"
#: sidebarseries.ui
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y error bars"
-msgstr ""
+msgstr "Слупкі памылак Y"
#: sidebarseries.ui
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X error bars"
-msgstr ""
+msgstr "Слупкі памылак X"
#: sidebarseries.ui
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error Bars"
-msgstr ""
+msgstr "Слупкі памылак"
#: sidebarseries.ui
msgctxt ""
@@ -1778,7 +1778,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ABCD"
-msgstr ""
+msgstr "ABCD"
#: titlerotationtabpage.ui
msgctxt ""
@@ -1787,7 +1787,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Te_xt direction:"
-msgstr ""
+msgstr "Кірунак тэксту:"
#: titlerotationtabpage.ui
msgctxt ""
@@ -1841,7 +1841,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Simple"
-msgstr ""
+msgstr "Проста"
#: tp_3D_SceneAppearance.ui
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Realistic"
-msgstr ""
+msgstr "Рэалістычна"
#: tp_3D_SceneAppearance.ui
msgctxt ""
@@ -1859,16 +1859,17 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Custom"
-msgstr ""
+msgstr "Свой"
#: tp_3D_SceneGeometry.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneGeometry.ui\n"
"CBX_RIGHT_ANGLED_AXES\n"
"label\n"
"string.text"
msgid "_Right-angled axes"
-msgstr ""
+msgstr "Аксанаметрычныя восі"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1877,7 +1878,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X rotation"
-msgstr ""
+msgstr "Паварот X"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1886,7 +1887,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y rotation"
-msgstr ""
+msgstr "Паварот Y"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1895,7 +1896,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Z rotation"
-msgstr ""
+msgstr "Паварот Z"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1904,7 +1905,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Perspective"
-msgstr ""
+msgstr "Перспектыва"
#: tp_3D_SceneGeometry.ui
msgctxt ""
@@ -1913,7 +1914,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Perspective"
-msgstr ""
+msgstr "Перспектыва"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1922,7 +1923,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 1"
-msgstr ""
+msgstr "Крыніца святла 1"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1931,7 +1932,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 2"
-msgstr ""
+msgstr "Крыніца святла 2"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1940,7 +1941,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 3"
-msgstr ""
+msgstr "Крыніца святла 3"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1949,7 +1950,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 4"
-msgstr ""
+msgstr "Крыніца святла 4"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1958,7 +1959,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 5"
-msgstr ""
+msgstr "Крыніца святла 5"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1967,7 +1968,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 6"
-msgstr ""
+msgstr "Крыніца святла 6"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1976,7 +1977,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 7"
-msgstr ""
+msgstr "Крыніца святла 7"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -1985,16 +1986,17 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light source 8"
-msgstr ""
+msgstr "Крыніца святла 8"
#: tp_3D_SceneIllumination.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneIllumination.ui\n"
"BTN_LIGHTSOURCE_COLOR\n"
"tooltip_text\n"
"string.text"
msgid "Select a color using the color dialog"
-msgstr ""
+msgstr "Выберыце колер у дыялогу выбару колераў"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -2003,16 +2005,17 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Light source"
-msgstr ""
+msgstr "Крыніца святла"
#: tp_3D_SceneIllumination.ui
+#, fuzzy
msgctxt ""
"tp_3D_SceneIllumination.ui\n"
"BTN_AMBIENT_COLOR\n"
"tooltip_text\n"
"string.text"
msgid "Select a color using the color dialog"
-msgstr ""
+msgstr "Выбраць колер у дылогу выбару колераў"
#: tp_3D_SceneIllumination.ui
msgctxt ""
@@ -2021,7 +2024,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Ambient light"
-msgstr ""
+msgstr "Навакольнае (ambient) асвятленне"
#: tp_3D_SceneIllumination.ui
msgctxt ""
diff --git a/source/be/cui/source/customize.po b/source/be/cui/source/customize.po
index 6bab27f6157..b1a2d0dd22a 100644
--- a/source/be/cui/source/customize.po
+++ b/source/be/cui/source/customize.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: customize\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 00:37+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:44+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1460853457.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335089.000000\n"
#: acccfg.src
msgctxt ""
@@ -57,7 +57,7 @@ msgctxt ""
"ID_DEFAULT_COMMAND\n"
"menuitem.text"
msgid "Restore Default Command"
-msgstr ""
+msgstr "Узнавіць прадвызначаную каманду"
#: cfg.src
msgctxt ""
@@ -183,7 +183,7 @@ msgctxt ""
"RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n"
"string.text"
msgid "%PRODUCTNAME %MODULENAME Context Menus"
-msgstr ""
+msgstr "Кантэкстныя меню %PRODUCTNAME %MODULENAME"
#: cfg.src
msgctxt ""
@@ -223,10 +223,9 @@ msgctxt ""
"RID_SVXSTR_TOOLBAR_NAME\n"
"string.text"
msgid "Toolbar Name"
-msgstr ""
+msgstr "Назва стужкі"
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SXVSTR_CONFIRM_DELETE_TOOLBAR\n"
@@ -240,7 +239,7 @@ msgctxt ""
"RID_SVXSTR_CONFIRM_MENU_RESET\n"
"string.text"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
+msgstr "Настаўленні меню для %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?"
#: cfg.src
msgctxt ""
@@ -248,10 +247,9 @@ msgctxt ""
"RID_SVXSTR_CONFIRM_TOOLBAR_RESET\n"
"string.text"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
-msgstr ""
+msgstr "Настаўленні стужкі %SAVE IN SELECTION% будуць вернуты да стандартных значэнняў. Ці жадаеце працягваць?"
#: cfg.src
-#, fuzzy
msgctxt ""
"cfg.src\n"
"RID_SVXSTR_CONFIRM_RESTORE_DEFAULT\n"
diff --git a/source/be/cui/source/dialogs.po b/source/be/cui/source/dialogs.po
index 0f9c9055a3f..9e10eef7155 100644
--- a/source/be/cui/source/dialogs.po
+++ b/source/be/cui/source/dialogs.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: dialogs\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-08 07:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:47+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462691496.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335262.000000\n"
#: cuires.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"RID_SVXSTR_ALLFUNCTIONS\n"
"string.text"
msgid "All categories"
-msgstr ""
+msgstr "Усе катэгорыі"
#: cuires.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"RID_SVXSTR_PPI\n"
"string.text"
msgid "(%1 PPI)"
-msgstr ""
+msgstr "(%1 PPI)"
#: cuires.src
msgctxt ""
@@ -119,7 +119,7 @@ msgctxt ""
"RID_SVXSTR_LOADACCELCONFIG\n"
"string.text"
msgid "Load Keyboard Configuration"
-msgstr ""
+msgstr "Прачытаць настаўленні клавіятуры"
#: cuires.src
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"RID_SVXSTR_SAVEACCELCONFIG\n"
"string.text"
msgid "Save Keyboard Configuration"
-msgstr ""
+msgstr "Запісаць настаўленні клавіятуры"
#: cuires.src
msgctxt ""
@@ -367,7 +367,7 @@ msgctxt ""
"RID_SVXSTR_HYPERDLG_HLMAILTP\n"
"string.text"
msgid "Mail"
-msgstr ""
+msgstr "Пошта"
#: hyperdlg.src
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"RID_SVXSTR_ADD_IMAGE\n"
"string.text"
msgid "Add Image"
-msgstr ""
+msgstr "Дадаць відарыс"
#: passwdomdlg.src
msgctxt ""
@@ -479,7 +479,7 @@ msgctxt ""
"RID_SVXSTR_PASSWD_MUST_BE_CONFIRMED\n"
"string.text"
msgid "Password must be confirmed"
-msgstr ""
+msgstr "Трэба пацвердзіць пароль"
#: passwdomdlg.src
msgctxt ""
@@ -487,7 +487,7 @@ msgctxt ""
"RID_SVXSTR_ONE_PASSWORD_MISMATCH\n"
"string.text"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr ""
+msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі."
#: passwdomdlg.src
msgctxt ""
@@ -519,7 +519,7 @@ msgctxt ""
"RID_SVXSTR_SAVE_SCREENSHOT_AS\n"
"string.text"
msgid "Save Screenshot As..."
-msgstr ""
+msgstr "Захаваць здымак як..."
#: scriptdlg.src
msgctxt ""
diff --git a/source/be/cui/source/options.po b/source/be/cui/source/options.po
index 62ca7e591e1..f44719228a7 100644
--- a/source/be/cui/source/options.po
+++ b/source/be/cui/source/options.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: options\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-08 07:13+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:56+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462691605.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491335819.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"RID_SVXSTR_DRIVER_NAME\n"
"string.text"
msgid "Driver name"
-msgstr ""
+msgstr "Назва драйвера"
#: connpooloptions.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"RID_SVXSTR_POOLED_FLAG\n"
"string.text"
msgid "Pool"
-msgstr ""
+msgstr "Супол"
#: connpooloptions.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"RID_SVXSTR_POOL_TIMEOUT\n"
"string.text"
msgid "Timeout"
-msgstr ""
+msgstr "Таймаут"
#: connpooloptions.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"RID_SVXSTR_YES\n"
"string.text"
msgid "Yes"
-msgstr ""
+msgstr "Так"
#: connpooloptions.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"RID_SVXSTR_NO\n"
"string.text"
msgid "No"
-msgstr ""
+msgstr "Не"
#: dbregister.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_SVXSTR_TYPE\n"
"string.text"
msgid "Registered name"
-msgstr ""
+msgstr "Зарэгістраваная назва"
#: dbregister.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"RID_SVXSTR_PATH\n"
"string.text"
msgid "Database file"
-msgstr ""
+msgstr "Файл базы даных"
#: doclinkdialog.src
msgctxt ""
@@ -186,7 +186,7 @@ msgctxt ""
"STR_MODIFY\n"
"string.text"
msgid "~Replace"
-msgstr ""
+msgstr "Замяніць"
#: optdict.src
msgctxt ""
@@ -202,7 +202,7 @@ msgctxt ""
"RID_SVXSTR_HEADER1\n"
"string.text"
msgid "[L]"
-msgstr ""
+msgstr "[L]"
#: optfltr.src
msgctxt ""
@@ -210,7 +210,7 @@ msgctxt ""
"RID_SVXSTR_HEADER2\n"
"string.text"
msgid "[S]"
-msgstr ""
+msgstr "[S]"
#: optfltr.src
msgctxt ""
@@ -218,7 +218,7 @@ msgctxt ""
"RID_SVXSTR_CHG_MATH\n"
"string.text"
msgid "MathType to %PRODUCTNAME Math or reverse"
-msgstr ""
+msgstr "MathType у %PRODUCTNAME Math і адваротна"
#: optfltr.src
msgctxt ""
@@ -226,7 +226,7 @@ msgctxt ""
"RID_SVXSTR_CHG_WRITER\n"
"string.text"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
-msgstr ""
+msgstr "WinWord у %PRODUCTNAME Writer і адваротна"
#: optfltr.src
msgctxt ""
@@ -234,7 +234,7 @@ msgctxt ""
"RID_SVXSTR_CHG_CALC\n"
"string.text"
msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr ""
+msgstr "Excel у %PRODUCTNAME Calc і адваротна"
#: optfltr.src
msgctxt ""
@@ -242,7 +242,7 @@ msgctxt ""
"RID_SVXSTR_CHG_IMPRESS\n"
"string.text"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
-msgstr ""
+msgstr "PowerPoint у %PRODUCTNAME Impress і адваротна"
#: optfltr.src
msgctxt ""
@@ -267,7 +267,6 @@ msgstr ""
"Максімальны дазволены нумар порта гэта 65535."
#: optjava.src
-#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXSTR_JRE_NOT_RECOGNIZED\n"
@@ -280,7 +279,6 @@ msgstr ""
"Выберыце іншы каталог."
#: optjava.src
-#, fuzzy
msgctxt ""
"optjava.src\n"
"RID_SVXSTR_JRE_FAILED_VERSION\n"
@@ -314,7 +312,7 @@ msgctxt ""
"RID_SVXSTR_SPELL\n"
"string.text"
msgid "Spelling"
-msgstr ""
+msgstr "Правапіс"
#: optlingu.src
msgctxt ""
@@ -322,7 +320,7 @@ msgctxt ""
"RID_SVXSTR_HYPH\n"
"string.text"
msgid "Hyphenation"
-msgstr ""
+msgstr "Пераносы"
#: optlingu.src
msgctxt ""
@@ -330,7 +328,7 @@ msgctxt ""
"RID_SVXSTR_THES\n"
"string.text"
msgid "Thesaurus"
-msgstr ""
+msgstr "Тэзаўрус"
#: optlingu.src
msgctxt ""
@@ -338,7 +336,7 @@ msgctxt ""
"RID_SVXSTR_GRAMMAR\n"
"string.text"
msgid "Grammar"
-msgstr ""
+msgstr "Граматыка"
#: optlingu.src
msgctxt ""
@@ -346,7 +344,7 @@ msgctxt ""
"RID_SVXSTR_CAPITAL_WORDS\n"
"string.text"
msgid "Check uppercase words"
-msgstr ""
+msgstr "Правяраць словы ў верхнім рэгістры"
#: optlingu.src
msgctxt ""
@@ -354,7 +352,7 @@ msgctxt ""
"RID_SVXSTR_WORDS_WITH_DIGITS\n"
"string.text"
msgid "Check words with numbers "
-msgstr ""
+msgstr "Правяраць словы з лічбамі "
#: optlingu.src
msgctxt ""
@@ -362,7 +360,7 @@ msgctxt ""
"RID_SVXSTR_SPELL_SPECIAL\n"
"string.text"
msgid "Check special regions"
-msgstr ""
+msgstr "Правяраць спецыяльныя вобласці"
#: optlingu.src
msgctxt ""
@@ -370,7 +368,7 @@ msgctxt ""
"RID_SVXSTR_SPELL_AUTO\n"
"string.text"
msgid "Check spelling as you type"
-msgstr ""
+msgstr "Правяраць правапіс падчас набору"
#: optlingu.src
msgctxt ""
@@ -378,7 +376,7 @@ msgctxt ""
"RID_SVXSTR_GRAMMAR_AUTO\n"
"string.text"
msgid "Check grammar as you type"
-msgstr ""
+msgstr "Аўтаматычна правяраць граматыку"
#: optlingu.src
msgctxt ""
@@ -442,7 +440,7 @@ msgctxt ""
"RID_SVXSTR_KEY_GRAPHICS_PATH\n"
"string.text"
msgid "Images"
-msgstr ""
+msgstr "Відарысы"
#: optpath.src
msgctxt ""
@@ -586,7 +584,7 @@ msgctxt ""
"RID_SVXSTR_KEY_CLASSIFICATION_PATH\n"
"string.text"
msgid "Classification"
-msgstr ""
+msgstr "Класіфікацыя"
#: optpath.src
msgctxt ""
@@ -610,7 +608,7 @@ msgctxt ""
"RID_SVXSTR_SEARCHTERM\n"
"string.text"
msgid "Search term"
-msgstr ""
+msgstr "Пошук тэксту"
#: personalization.src
msgctxt ""
@@ -659,7 +657,7 @@ msgctxt ""
"LibreOffice\n"
"itemlist.text"
msgid "LibreOffice"
-msgstr ""
+msgstr "LibreOffice"
#: personalization.src
msgctxt ""
@@ -668,7 +666,7 @@ msgctxt ""
"Abstract\n"
"itemlist.text"
msgid "Abstract"
-msgstr ""
+msgstr "Абстракцыя"
#: personalization.src
msgctxt ""
@@ -677,7 +675,7 @@ msgctxt ""
"Color\n"
"itemlist.text"
msgid "Color"
-msgstr ""
+msgstr "Колер"
#: personalization.src
msgctxt ""
@@ -686,7 +684,7 @@ msgctxt ""
"Music\n"
"itemlist.text"
msgid "Music"
-msgstr ""
+msgstr "Музыка"
#: personalization.src
msgctxt ""
@@ -695,7 +693,7 @@ msgctxt ""
"Nature\n"
"itemlist.text"
msgid "Nature"
-msgstr ""
+msgstr "Прырода"
#: personalization.src
msgctxt ""
@@ -704,7 +702,7 @@ msgctxt ""
"Solid\n"
"itemlist.text"
msgid "Solid"
-msgstr ""
+msgstr "Суцэльны"
#: treeopt.src
msgctxt ""
@@ -713,7 +711,7 @@ msgctxt ""
"%PRODUCTNAME\n"
"itemlist.text"
msgid "%PRODUCTNAME"
-msgstr ""
+msgstr "%PRODUCTNAME"
#: treeopt.src
msgctxt ""
@@ -722,7 +720,7 @@ msgctxt ""
"User Data\n"
"itemlist.text"
msgid "User Data"
-msgstr ""
+msgstr "Карыстальніцкія дадзеныя"
#: treeopt.src
msgctxt ""
@@ -731,7 +729,7 @@ msgctxt ""
"General\n"
"itemlist.text"
msgid "General"
-msgstr ""
+msgstr "Агульнае"
#: treeopt.src
msgctxt ""
@@ -740,7 +738,7 @@ msgctxt ""
"Memory\n"
"itemlist.text"
msgid "Memory"
-msgstr ""
+msgstr "Памяць"
#: treeopt.src
msgctxt ""
@@ -749,7 +747,7 @@ msgctxt ""
"View\n"
"itemlist.text"
msgid "View"
-msgstr ""
+msgstr "Від"
#: treeopt.src
msgctxt ""
@@ -758,7 +756,7 @@ msgctxt ""
"Print\n"
"itemlist.text"
msgid "Print"
-msgstr ""
+msgstr "Друк"
#: treeopt.src
msgctxt ""
@@ -767,7 +765,7 @@ msgctxt ""
"Paths\n"
"itemlist.text"
msgid "Paths"
-msgstr ""
+msgstr "Шляхі"
#: treeopt.src
msgctxt ""
@@ -776,7 +774,7 @@ msgctxt ""
"Fonts\n"
"itemlist.text"
msgid "Fonts"
-msgstr ""
+msgstr "Шрыфты"
#: treeopt.src
msgctxt ""
@@ -785,7 +783,7 @@ msgctxt ""
"Security\n"
"itemlist.text"
msgid "Security"
-msgstr ""
+msgstr "Бяспека"
#: treeopt.src
msgctxt ""
@@ -794,7 +792,7 @@ msgctxt ""
"Personalization\n"
"itemlist.text"
msgid "Personalization"
-msgstr ""
+msgstr "Персаналізацыя"
#: treeopt.src
msgctxt ""
diff --git a/source/be/cui/uiconfig/ui.po b/source/be/cui/uiconfig/ui.po
index 44321ce991e..5f2b2aade30 100644
--- a/source/be/cui/uiconfig/ui.po
+++ b/source/be/cui/uiconfig/ui.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\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-18 12:46+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 16:59+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476794815.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491325153.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
@@ -3237,7 +3237,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Colors"
-msgstr ""
+msgstr "Папярэднія колеры"
#: colorpage.ui
msgctxt ""
@@ -4531,7 +4531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr ""
+msgstr "Атрымаць больш слоўнікаў у сеціве..."
#: editmodulesdialog.ui
#, fuzzy
@@ -5558,7 +5558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File type:"
-msgstr ""
+msgstr "Тып ф_айла:"
#: galleryfilespage.ui
msgctxt ""
@@ -6240,7 +6240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined Dictionaries"
-msgstr ""
+msgstr "Слоўнікі карыстальніка"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6258,7 +6258,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show recently used entries first"
-msgstr ""
+msgstr "Паказваць нядаўнія запісы ў пачатку"
#: hangulhanjaoptdialog.ui
msgctxt ""
@@ -6440,7 +6440,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open File"
-msgstr ""
+msgstr "Адкрыць файл"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6449,7 +6449,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Open File"
-msgstr ""
+msgstr "Адкрыць файл"
#: hyperlinkdocpage.ui
msgctxt ""
@@ -6851,7 +6851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File:"
-msgstr ""
+msgstr "Ф_айл:"
#: hyperlinknewdocpage.ui
msgctxt ""
@@ -10741,7 +10741,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help Improve %PRODUCTNAME"
-msgstr ""
+msgstr "Дапамажыце палепшыць %PRODUCTNAME"
#: opthtmlpage.ui
msgctxt ""
@@ -11264,7 +11264,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User-defined dictionaries:"
-msgstr ""
+msgstr "_Слоўнікі карыстальніка:"
#: optlingupage.ui
msgctxt ""
@@ -11292,7 +11292,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit User-defined dictionaries"
-msgstr ""
+msgstr "Рэдагаваць слоўнікі карыстальніка"
#: optlingupage.ui
msgctxt ""
@@ -11320,7 +11320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr ""
+msgstr "Іншыя слоўнікі ў сеціве..."
#: optlingupage.ui
#, fuzzy
@@ -14005,7 +14005,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open file read-only"
-msgstr ""
+msgstr "Адкрыць толькі для чытання"
#: password.ui
msgctxt ""
@@ -15101,7 +15101,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paste the following markup into the help file:"
-msgstr ""
+msgstr "Устаўце наступную разметку ў файл даведкі:"
#: scriptorganizer.ui
msgctxt ""
@@ -15301,7 +15301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When creating PDF _files"
-msgstr "Пры стварэнні файлаў PDF"
+msgstr "Пры стварэнні ф_айлаў PDF"
#: securityoptionsdialog.ui
msgctxt ""
diff --git a/source/be/dbaccess/source/ui/dlg.po b/source/be/dbaccess/source/ui/dlg.po
index 24c82dcaa92..c3037e8c688 100644
--- a/source/be/dbaccess/source/ui/dlg.po
+++ b/source/be/dbaccess/source/ui/dlg.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: dlg\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: 2015-08-25 15:52+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 17:10+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440517968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325810.000000\n"
#: AutoControls.src
msgctxt ""
@@ -690,7 +690,6 @@ msgid "Set up a connection to spreadsheets"
msgstr "Наставіць далучэнне да разліковых аркушаў"
#: dbadminsetup.src
-#, fuzzy
msgctxt ""
"dbadminsetup.src\n"
"STR_SPREADSHEET_HELPTEXT\n"
diff --git a/source/be/dbaccess/uiconfig/ui.po b/source/be/dbaccess/uiconfig/ui.po
index d21746c0666..901567fd5d3 100644
--- a/source/be/dbaccess/uiconfig/ui.po
+++ b/source/be/dbaccess/uiconfig/ui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: ui\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: 2015-12-11 14:13+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 16:59+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449843230.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325181.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1013,14 +1013,13 @@ msgid "_Embedded database:"
msgstr ""
#: generalpagewizard.ui
-#, fuzzy
msgctxt ""
"generalpagewizard.ui\n"
"openExistingDatabase\n"
"label\n"
"string.text"
msgid "Open an existing database _file"
-msgstr "Адкрыць"
+msgstr "Адкрыць наяўны ф_айл базы даных"
#: generalpagewizard.ui
msgctxt ""
@@ -1029,7 +1028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Recently used:"
-msgstr ""
+msgstr "_Нядаўна выкарыстаныя:"
#: generalpagewizard.ui
#, fuzzy
diff --git a/source/be/editeng/source/editeng.po b/source/be/editeng/source/editeng.po
index 725499458b6..16b43b977fa 100644
--- a/source/be/editeng/source/editeng.po
+++ b/source/be/editeng/source/editeng.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: editeng\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: 2013-08-05 12:37+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 19:39+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1375706220.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491334785.000000\n"
#: editeng.src
msgctxt ""
@@ -89,14 +89,13 @@ msgid "Change Case"
msgstr "Змяніць рэгістр літар"
#: editeng.src
-#, fuzzy
msgctxt ""
"editeng.src\n"
"RID_MENU_SPELL\n"
"MN_IGNORE\n"
"menuitem.text"
msgid "I~gnore All"
-msgstr "Ignore All"
+msgstr "Ігнараваць усе"
#: editeng.src
msgctxt ""
@@ -132,7 +131,7 @@ msgctxt ""
"MN_AUTOCORR\n"
"menuitem.text"
msgid "AutoCorrect ~To"
-msgstr ""
+msgstr "Аўтазам~ена на"
#: editeng.src
msgctxt ""
@@ -141,7 +140,7 @@ msgctxt ""
"MN_AUTO_CORRECT_DLG\n"
"menuitem.text"
msgid "Auto~Correct Options..."
-msgstr ""
+msgstr "Параметры аўтазамены..."
#: editeng.src
msgctxt ""
diff --git a/source/be/editeng/source/misc.po b/source/be/editeng/source/misc.po
index 1b479694117..d7acea00fbb 100644
--- a/source/be/editeng/source/misc.po
+++ b/source/be/editeng/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: misc\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-03-24 13:25+0000\n"
+"PO-Revision-Date: 2017-04-04 19:40+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490361946.000000\n"
+"X-POOTLE-MTIME: 1491334843.000000\n"
#: lingu.src
msgctxt ""
@@ -33,7 +33,6 @@ msgid "Continue checking at end of document?"
msgstr "Continue checking at end of document?"
#: lingu.src
-#, fuzzy
msgctxt ""
"lingu.src\n"
"RID_SVXSTR_HMERR_THESAURUS\n"
@@ -42,8 +41,8 @@ msgid ""
"No thesaurus is available for the selected language. \n"
"Please check your installation and install the desired language\n"
msgstr ""
-"No thesaurus is available for the selected language. \n"
-"Please check your installation and install the desired language\n"
+"Няма ў наяўнасці тэзаўруса для выбранай мовы.\n"
+"Праверце вашу інсталяцыю і ўстанавіце патрэбны варыянт.\n"
#: lingu.src
msgctxt ""
diff --git a/source/be/extensions/source/propctrlr.po b/source/be/extensions/source/propctrlr.po
index 9c849b9e520..f71a2b86d02 100644
--- a/source/be/extensions/source/propctrlr.po
+++ b/source/be/extensions/source/propctrlr.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: propctrlr\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:17+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:07+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449843459.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490879223.000000\n"
#: formlinkdialog.src
msgctxt ""
@@ -2001,7 +2001,7 @@ msgctxt ""
"Help\n"
"itemlist.text"
msgid "Help"
-msgstr ""
+msgstr "Даведка"
#: formres.src
msgctxt ""
diff --git a/source/be/extras/source/autocorr/emoji.po b/source/be/extras/source/autocorr/emoji.po
index 1f9f3edc1a0..51e3e2c6187 100644
--- a/source/be/extras/source/autocorr/emoji.po
+++ b/source/be/extras/source/autocorr/emoji.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-10-18 13:02+0200\n"
-"PO-Revision-Date: 2016-05-08 07:35+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:57+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1462692932.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325021.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3915,7 +3915,7 @@ msgctxt ""
"CRESCENT_MOON\n"
"LngText.text"
msgid "crescent moon"
-msgstr ""
+msgstr "паўмесяц"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/be/filter/source/config/fragments/filters.po b/source/be/filter/source/config/fragments/filters.po
index 8554cd22686..6522c9d7684 100644
--- a/source/be/filter/source/config/fragments/filters.po
+++ b/source/be/filter/source/config/fragments/filters.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: filters\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 16:31+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467649878.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325887.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ClarisWorks/AppleWorks Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш ClarisWorks/AppleWorks"
#: ClarisWorks_Draw.xcu
msgctxt ""
@@ -359,14 +359,13 @@ msgid "Microsoft Excel 97-2003"
msgstr ""
#: MS_Excel_97_Vorlage_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_97_Vorlage_Template.xcu\n"
"MS Excel 97 Vorlage/Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 97-2003 Template"
-msgstr "Шаблон Microsoft Excel 95"
+msgstr "Шаблон Microsoft Excel 97-2003"
#: MS_PowerPoint_97.xcu
#, fuzzy
@@ -389,14 +388,13 @@ msgid "Microsoft PowerPoint 97-2003 AutoPlay"
msgstr "Шаблон Microsoft PowerPoint 97/2000/XP/2003"
#: MS_PowerPoint_97_Vorlage.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97_Vorlage.xcu\n"
"MS PowerPoint 97 Vorlage\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003 Template"
-msgstr "Шаблон Microsoft PowerPoint 97/2000/XP/2003"
+msgstr "Шаблон Microsoft PowerPoint 97-2003"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -436,14 +434,13 @@ msgid "Microsoft Word 2007-2013 XML"
msgstr "Microsoft Word 2003 XML"
#: MS_Word_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Word_2007_XML_Template.xcu\n"
"MS Word 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML Template"
-msgstr "Шаблон Microsoft Word 95"
+msgstr "Шаблон Word 2007-2013 XML"
#: MS_Word_95.xcu
msgctxt ""
@@ -473,14 +470,13 @@ msgid "Microsoft Word 97-2003"
msgstr ""
#: MS_Word_97_Vorlage.xcu
-#, fuzzy
msgctxt ""
"MS_Word_97_Vorlage.xcu\n"
"MS Word 97 Vorlage\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 97-2003 Template"
-msgstr "Шаблон Microsoft Word 95"
+msgstr "Шаблон Microsoft Word 97-2003"
#: MS_Works.xcu
msgctxt ""
@@ -642,7 +638,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template"
-msgstr "Office Open XML Text Template"
+msgstr "Шаблон тэкставага дакумента Office Open XML"
#: PBM___Portable_Bitmap.xcu
msgctxt ""
@@ -1156,7 +1152,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet Template"
-msgstr "ODF Spreadsheet Template"
+msgstr "Шаблон электроннай табліцы ODF"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -1165,7 +1161,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш Gnumeric"
#: calc_HTML_WebQuery.xcu
msgctxt ""
@@ -1205,14 +1201,13 @@ msgid "Microsoft Excel 2007-2013 XML"
msgstr "Microsoft Excel 2003 XML"
#: calc_MS_Excel_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"calc_MS_Excel_2007_XML_Template.xcu\n"
"Calc MS Excel 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML Template"
-msgstr "Шаблон Microsoft Excel 95"
+msgstr "Шаблон Microsoft Excel 2007-2013 XML"
#: calc_OOXML.xcu
msgctxt ""
diff --git a/source/be/filter/source/config/fragments/types.po b/source/be/filter/source/config/fragments/types.po
index e20e5e3096f..0a3b6e08c4b 100644
--- a/source/be/filter/source/config/fragments/types.po
+++ b/source/be/filter/source/config/fragments/types.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: types\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: 2015-05-11 23:17+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-04-04 17:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431386229.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325904.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш Gnumeric"
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
@@ -295,14 +295,13 @@ msgid "Microsoft Word 2007-2013 XML"
msgstr "Microsoft Word 2003 XML"
#: writer_MS_Word_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"writer_MS_Word_2007_XML_Template.xcu\n"
"writer_MS_Word_2007_Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML Template"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Шаблон Microsoft Word 2007-2013 XML"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/be/fpicker/uiconfig/ui.po b/source/be/fpicker/uiconfig/ui.po
index b424267cedd..fb3a7325bbf 100644
--- a/source/be/fpicker/uiconfig/ui.po
+++ b/source/be/fpicker/uiconfig/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-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 07:36+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 15:55+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462692968.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490889307.000000\n"
#: explorerfiledialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Remote Files"
-msgstr ""
+msgstr "Адлеглыя файлы"
#: remotefilesdialog.ui
msgctxt ""
diff --git a/source/be/framework/source/classes.po b/source/be/framework/source/classes.po
index 882facfddf1..84c9be7b872 100644
--- a/source/be/framework/source/classes.po
+++ b/source/be/framework/source/classes.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: classes\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-08 07:36+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:53+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462692969.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491324829.000000\n"
#: resource.src
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"STR_REMOTE_TITLE\n"
"string.text"
msgid " (Remote)"
-msgstr ""
+msgstr " (аддалена)"
#: resource.src
msgctxt ""
diff --git a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 205c3c72ec7..7fcb438d5a6 100644
--- a/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: msi_languages\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-03-24 13:26+0000\n"
+"PO-Revision-Date: 2017-04-04 16:34+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490362019.000000\n"
+"X-POOTLE-MTIME: 1491323646.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"OOO_CONTROL_127\n"
"LngText.text"
msgid "The Installation Wizard will install [ProductName] on your computer. To continue, click Next."
-msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягваць устаноўку."
+msgstr "Майстар Устаноўкі паставіць [ProductName] на ваш камп'ютар. Націсніце 'Наперад', каб працягнуць устаноўку."
#: Control.ulf
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office.po b/source/be/officecfg/registry/data/org/openoffice/Office.po
index 9ff911278aa..edfbc4d34f5 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Office\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-03-24 13:33+0000\n"
+"PO-Revision-Date: 2017-04-04 17:02+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490362383.000000\n"
+"X-POOTLE-MTIME: 1491325357.000000\n"
#: Addons.xcu
msgctxt ""
@@ -207,7 +207,6 @@ msgid "B~usiness Cards"
msgstr "Візітныя карткі"
#: Common.xcu
-#, fuzzy
msgctxt ""
"Common.xcu\n"
"..Common.Menus.New.m14\n"
@@ -1551,7 +1550,6 @@ msgid "Exchange"
msgstr "Абмяняць"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n"
@@ -1999,7 +1997,6 @@ msgid "Slide Overview, %CURRENT_SLIDE_NAME%, %CURRENT_SLIDE_NUMBER% of %SLIDE_CO
msgstr "Мініяцюра слайда, %CURRENT_SLIDE_NAME%, %CURRENT_SLIDE_NUMBER% з %SLIDE_COUNT%"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.Presenter.Views.HelpView\n"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 0e82c9c32a0..a92ad85ce0e 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: UI\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 12:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:13+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480594260.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491326017.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -2868,10 +2868,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet..."
-msgstr ""
+msgstr "Засцерагаць аркуш..."
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:ToolsOptions\n"
@@ -4451,7 +4450,6 @@ msgid "Text Formatting"
msgstr "Фарматаванне тэксту"
#: CalcWindowState.xcu
-#, fuzzy
msgctxt ""
"CalcWindowState.xcu\n"
"..CalcWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -17023,7 +17021,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Templates"
-msgstr ""
+msgstr "Шаблоны"
#: GenericCommands.xcu
msgctxt ""
@@ -17032,16 +17030,17 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Manage Templates"
-msgstr ""
+msgstr "Распарадзіцца шаблонамі"
#: GenericCommands.xcu
+#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:NewDoc\n"
"TooltipLabel\n"
"value.text"
msgid "Show Templates Manager"
-msgstr ""
+msgstr "Паказаць загадчык шаблонаў"
#: GenericCommands.xcu
msgctxt ""
@@ -17069,7 +17068,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Remote"
-msgstr ""
+msgstr "Адкрыць аддалена"
#: GenericCommands.xcu
msgctxt ""
@@ -17078,7 +17077,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Open Remote ~File..."
-msgstr ""
+msgstr "Адкрыць адлеглы ф~айл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17087,7 +17086,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Open Remote File"
-msgstr ""
+msgstr "Адкрыць адлеглы файл"
#: GenericCommands.xcu
msgctxt ""
@@ -17096,7 +17095,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Remote"
-msgstr ""
+msgstr "Запісаць аддалена"
#: GenericCommands.xcu
msgctxt ""
@@ -17105,7 +17104,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Sa~ve Remote File..."
-msgstr ""
+msgstr "~Запісаць адлеглы файл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17114,7 +17113,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Save Remote File"
-msgstr ""
+msgstr "Запісаць адлеглы файл"
#: GenericCommands.xcu
msgctxt ""
@@ -17123,7 +17122,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Save Remote File..."
-msgstr ""
+msgstr "Запісаць адлеглы файл..."
#: GenericCommands.xcu
msgctxt ""
@@ -17818,7 +17817,6 @@ msgid "Move Down"
msgstr "Пасунуць уніз"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveAsTemplate\n"
@@ -18609,7 +18607,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Open Template..."
-msgstr ""
+msgstr "~Адкрыць шаблон..."
#: GenericCommands.xcu
msgctxt ""
@@ -20322,7 +20320,6 @@ msgid "Presentation Options"
msgstr "Presentation Options"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ScEditOptions\n"
@@ -22736,7 +22733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Tools"
-msgstr "Прылады"
+msgstr "~Прылады"
#: GenericCommands.xcu
msgctxt ""
@@ -23067,7 +23064,6 @@ msgid "E-mail as ~OpenDocument Format..."
msgstr "Адаслаць эл.поштай у фармаце ~OpenDocument..."
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TemplateManager\n"
@@ -24172,7 +24168,6 @@ msgid "Standard"
msgstr "Стандартна"
#: MathWindowState.xcu
-#, fuzzy
msgctxt ""
"MathWindowState.xcu\n"
"..MathWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -24455,14 +24450,13 @@ msgid "Text Document"
msgstr "Тэкставы дакумент"
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:Spreadsheet\n"
"Label\n"
"value.text"
msgid "Spreadsheet Document"
-msgstr "Разліковы аркуш Дакумент"
+msgstr "Разліковы аркуш"
#: ReportCommands.xcu
#, fuzzy
@@ -25379,17 +25373,15 @@ msgid "What's ~This?"
msgstr "Што гэта?"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:HelpIndex\n"
"Label\n"
"value.text"
msgid "%PRODUCTNAME ~Help"
-msgstr "Даведка %PRODUCTNAME"
+msgstr "~Даведка %PRODUCTNAME"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Commands..uno:NewDoc\n"
@@ -25519,14 +25511,13 @@ msgid "~Edit"
msgstr "Правіць"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:HelpMenu\n"
"Label\n"
"value.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: StartModuleCommands.xcu
#, fuzzy
@@ -25549,14 +25540,13 @@ msgid "~File"
msgstr "Файл"
#: StartModuleCommands.xcu
-#, fuzzy
msgctxt ""
"StartModuleCommands.xcu\n"
"..StartModuleCommands.UserInterface.Popups..uno:ToolsMenu\n"
"Label\n"
"value.text"
msgid "~Tools"
-msgstr "Прылады"
+msgstr "~Прылады"
#: StartModuleCommands.xcu
#, fuzzy
@@ -30331,7 +30321,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterFormWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterFormWindowState.xcu\n"
"..WriterFormWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -30826,7 +30815,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: WriterGlobalWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterGlobalWindowState.xcu\n"
"..WriterGlobalWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -31319,7 +31307,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterReportWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterReportWindowState.xcu\n"
"..WriterReportWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -31794,7 +31781,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: WriterWebWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWebWindowState.xcu\n"
"..WriterWebWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -32248,7 +32234,6 @@ msgid "Mail Merge"
msgstr ""
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
@@ -32797,7 +32782,6 @@ msgid "Formatting"
msgstr "Фарматаванне"
#: XFormsWindowState.xcu
-#, fuzzy
msgctxt ""
"XFormsWindowState.xcu\n"
"..XFormsWindowState.UIElements.States.private:resource/toolbar/toolbar\n"
diff --git a/source/be/readlicense_oo/docs.po b/source/be/readlicense_oo/docs.po
index 0bf06f036e1..426ce45e80d 100644
--- a/source/be/readlicense_oo/docs.po
+++ b/source/be/readlicense_oo/docs.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: docs\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-03-29 12:21+0000\n"
+"PO-Revision-Date: 2017-03-30 13:09+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490790101.000000\n"
+"X-POOTLE-MTIME: 1490879372.000000\n"
#: readme.xrm
#, fuzzy
@@ -643,7 +643,6 @@ msgid "Only shortcut keys (key combinations) not used by the operating system ca
msgstr "Толькі тыя клавіятурныя скароты (спалучэнні клавіш), што не выкарыстоўваюцца аперацыйнай сістэмай, могуць быць выкарыстаны ў ${PRODUCTNAME}. Калі спалучэнне клавіш у ${PRODUCTNAME} не працуе так, яка апісана ў даведцы ${PRODUCTNAME}, праверце, ці не выкарыстаны ўжо гэтыя скароты аперацыйнай сістэмай. Каб развязаць падобныя канфлікты, вы можаце змяніць спалучэнні, вызначаныя вашай аперацыйнай сістэмай. Як варыянт, вы можаце змяніць амаль кожны скарот у ${PRODUCTNAME}. Каб атрымаць больш інфармацыі па гэтай тэме, звярніцеся да даведкі ${PRODUCTNAME} ці да даведкі аперацыйнай сістэмы."
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"mackeys1\n"
diff --git a/source/be/reportdesign/uiconfig/dbreport/ui.po b/source/be/reportdesign/uiconfig/dbreport/ui.po
index a9fa684159a..5c7dd2ba919 100644
--- a/source/be/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/be/reportdesign/uiconfig/dbreport/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-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-01 19:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:09+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462129860.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490879382.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help"
-msgstr ""
+msgstr "Даведка"
#: pagedialog.ui
msgctxt ""
diff --git a/source/be/sc/source/ui/src.po b/source/be/sc/source/ui/src.po
index f9fb0150939..beb8203c102 100644
--- a/source/be/sc/source/ui/src.po
+++ b/source/be/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: src\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-03-29 12:51+0000\n"
+"PO-Revision-Date: 2017-04-04 17:13+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490791865.000000\n"
+"X-POOTLE-MTIME: 1491326035.000000\n"
#: filter.src
msgctxt ""
@@ -3719,6 +3719,7 @@ msgstr ""
"Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
diff --git a/source/be/sc/uiconfig/scalc/ui.po b/source/be/sc/uiconfig/scalc/ui.po
index 47431af60f3..4bb9b983b78 100644
--- a/source/be/sc/uiconfig/scalc/ui.po
+++ b/source/be/sc/uiconfig/scalc/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\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-03-29 12:54+0000\n"
+"PO-Revision-Date: 2017-04-04 17:15+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792094.000000\n"
+"X-POOTLE-MTIME: 1491326128.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -437,6 +437,9 @@ msgid ""
"\n"
"Select 'Protect Sheet' from the 'Tools' menu."
msgstr ""
+"Засцярога клеткі дзейнічае толькі пасля ўстанаўлення засцярогі бягучага аркуша\n"
+"\n"
+"Выберыце 'Засцерагчы аркуш' у меню 'Прылады'."
#: cellprotectionpage.ui
msgctxt ""
@@ -1675,7 +1678,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes."
-msgstr ""
+msgstr "Ёсць спрэчкі паміж змяненнямі ў гэтым аркушы супольнага карыстання. Спрэчкі павінны быць развязаныя перад запісам аркуша. Можна замацаваць або свае, або чужыя змяненні."
#: conflictsdialog.ui
msgctxt ""
@@ -4424,7 +4427,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш"
#: functionpanel.ui
msgctxt ""
@@ -6555,7 +6558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш"
#: notebookbar_groups.ui
msgctxt ""
@@ -7033,7 +7036,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Spreadsheet"
-msgstr ""
+msgstr "Новы разліковы аркуш"
#: optdlg.ui
msgctxt ""
@@ -12876,7 +12879,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Helplines _while moving"
-msgstr ""
+msgstr "Лініі-падказкі _пры перамяшчэнні"
#: tpviewpage.ui
msgctxt ""
@@ -13343,7 +13346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Input Help"
-msgstr ""
+msgstr "Даведка па ўводзе"
#: validationdialog.ui
msgctxt ""
@@ -13379,7 +13382,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Input help:"
-msgstr ""
+msgstr "_Даведка па ўводзе:"
#: validationhelptabpage.ui
msgctxt ""
diff --git a/source/be/scp2/source/ooo.po b/source/be/scp2/source/ooo.po
index e3facd549c2..3fe435d2dab 100644
--- a/source/be/scp2/source/ooo.po
+++ b/source/be/scp2/source/ooo.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: ooo\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 17:09+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:38+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467652185.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491323932.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -3705,7 +3705,7 @@ msgctxt ""
"STR_NAME_MODULE_DICTIONARIES\n"
"LngText.text"
msgid "Dictionaries"
-msgstr "Dictionaries"
+msgstr "Слоўнікі"
#: module_ooo.ulf
msgctxt ""
diff --git a/source/be/sd/uiconfig/simpress/ui.po b/source/be/sd/uiconfig/simpress/ui.po
index 31ec384f5cb..6b1461af7a9 100644
--- a/source/be/sd/uiconfig/simpress/ui.po
+++ b/source/be/sd/uiconfig/simpress/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\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 17:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 16:55+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1467652447.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491324943.000000\n"
#: customanimationeffecttab.ui
msgctxt ""
@@ -2263,7 +2263,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start with _Template Selection"
-msgstr ""
+msgstr "Пачаць з выбару шаблона"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -2344,7 +2344,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable remote control"
-msgstr ""
+msgstr "Уключыць дыстанцыйнае кіраванне"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Impress Remote"
-msgstr ""
+msgstr "Дыстанцыйнае кіраванне Impress"
#: remotedialog.ui
msgctxt ""
diff --git a/source/be/sfx2/source/appl.po b/source/be/sfx2/source/appl.po
index 8f01f2f2d39..087ef423580 100644
--- a/source/be/sfx2/source/appl.po
+++ b/source/be/sfx2/source/appl.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: appl\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-03-29 13:02+0000\n"
+"PO-Revision-Date: 2017-04-04 17:00+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792521.000000\n"
+"X-POOTLE-MTIME: 1491325213.000000\n"
#: app.src
msgctxt ""
@@ -436,6 +436,7 @@ msgid "Recent Documents"
msgstr "Апошнія дакументы"
#: app.src
+#, fuzzy
msgctxt ""
"app.src\n"
"STR_QUERY_UPDATE_LINKS\n"
diff --git a/source/be/sfx2/source/dialog.po b/source/be/sfx2/source/dialog.po
index 7a9f09d0de3..c5d262500c2 100644
--- a/source/be/sfx2/source/dialog.po
+++ b/source/be/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: dialog\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-03-10 18:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1457635812.000000\n"
+"X-POOTLE-MTIME: 1478887451.000000\n"
#: dialog.src
msgctxt ""
@@ -728,6 +728,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Іерархія"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/be/sfx2/source/doc.po b/source/be/sfx2/source/doc.po
index 7373cbb2b1b..09626c30430 100644
--- a/source/be/sfx2/source/doc.po
+++ b/source/be/sfx2/source/doc.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: doc\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-25 12:11+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 16:06+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -13,11 +13,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464178289.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490889985.000000\n"
#: doc.src
-#, fuzzy
msgctxt ""
"doc.src\n"
"STR_TEMPLATE_FILTER\n"
@@ -147,7 +146,7 @@ msgctxt ""
"STR_TEMPLATE_SELECTION\n"
"string.text"
msgid "Select a Template"
-msgstr ""
+msgstr "Выберыце шаблон"
#: doc.src
msgctxt ""
diff --git a/source/be/sfx2/uiconfig/ui.po b/source/be/sfx2/uiconfig/ui.po
index 33ae43c8c30..b7c6f4e7d9f 100644
--- a/source/be/sfx2/uiconfig/ui.po
+++ b/source/be/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\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-03-29 13:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 17:19+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490792641.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1491326384.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -441,7 +441,6 @@ msgid "Change _Password"
msgstr "Пароль"
#: documentinfopage.ui
-#, fuzzy
msgctxt ""
"documentinfopage.ui\n"
"templateft\n"
@@ -830,7 +829,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -851,7 +850,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File:"
-msgstr ""
+msgstr "Ф_айл:"
#: linkeditdialog.ui
#, fuzzy
@@ -900,14 +899,13 @@ msgid "Categories"
msgstr ""
#: loadtemplatedialog.ui
-#, fuzzy
msgctxt ""
"loadtemplatedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Templates"
-msgstr "Шаблон:"
+msgstr "Шаблоны"
#: loadtemplatedialog.ui
msgctxt ""
@@ -1105,14 +1103,13 @@ msgid "_Printer"
msgstr "Прынтэр"
#: optprintpage.ui
-#, fuzzy
msgctxt ""
"optprintpage.ui\n"
"file\n"
"label\n"
"string.text"
msgid "Print to _file"
-msgstr "Друкаваць"
+msgstr "Друкаваць у ф_айл"
#: optprintpage.ui
#, fuzzy
@@ -1522,7 +1519,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Save As Template"
-msgstr ""
+msgstr "Запісаць як шаблон"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1531,7 +1528,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Name"
-msgstr ""
+msgstr "Назва шаблона"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1540,7 +1537,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template _Category"
-msgstr ""
+msgstr "Катэгорыя шаблона"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1549,7 +1546,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set as default template"
-msgstr ""
+msgstr "_Зрабіць тыповым шаблонам"
#: saveastemplatedlg.ui
msgctxt ""
@@ -1624,14 +1621,13 @@ msgid "Wrap _around"
msgstr ""
#: securityinfopage.ui
-#, fuzzy
msgctxt ""
"securityinfopage.ui\n"
"readonly\n"
"label\n"
"string.text"
msgid "_Open file read-only"
-msgstr "Адкрыць"
+msgstr "_Адкрыць толькі для чытання"
#: securityinfopage.ui
#, fuzzy
@@ -1679,7 +1675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Clear Recent Documents"
-msgstr ""
+msgstr "Ачысціць нядаўнія дакументы"
#: startcenter.ui
msgctxt ""
@@ -1688,7 +1684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Writer Templates"
-msgstr ""
+msgstr "Шаблоны Writer"
#: startcenter.ui
msgctxt ""
@@ -1697,7 +1693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Calc Templates"
-msgstr ""
+msgstr "Шаблоны Calc"
#: startcenter.ui
msgctxt ""
@@ -1706,7 +1702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Impress Templates"
-msgstr ""
+msgstr "Шаблоны Impress"
#: startcenter.ui
msgctxt ""
@@ -1715,7 +1711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Draw Templates"
-msgstr ""
+msgstr "Шаблоны Draw"
#: startcenter.ui
msgctxt ""
@@ -1724,7 +1720,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Manage Templates"
-msgstr ""
+msgstr "Распарадзіцца шаблонамі"
#: startcenter.ui
msgctxt ""
@@ -1733,7 +1729,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Open File"
-msgstr ""
+msgstr "_Адкрыць файл"
#: startcenter.ui
msgctxt ""
@@ -1742,7 +1738,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remote File_s"
-msgstr ""
+msgstr "Адлеглыя файл_ы"
#: startcenter.ui
msgctxt ""
@@ -1751,27 +1747,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Recent Files"
-msgstr ""
+msgstr "_Нядаўнія файлы"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"templates_all\n"
"label\n"
"string.text"
msgid "T_emplates"
-msgstr "Шаблон:"
+msgstr "_Шаблоны"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"create_label\n"
"label\n"
"string.text"
msgid "Create:"
-msgstr "Пачаты:"
+msgstr "Стварыць:"
#: startcenter.ui
msgctxt ""
@@ -1780,7 +1774,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Writer Document"
-msgstr ""
+msgstr "Дакумент _Writer"
#: startcenter.ui
msgctxt ""
@@ -1789,7 +1783,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Calc Spreadsheet"
-msgstr ""
+msgstr "Разліковы аркуш _Calc"
#: startcenter.ui
msgctxt ""
@@ -1834,7 +1828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "He_lp"
-msgstr ""
+msgstr "_Даведка"
#: startcenter.ui
msgctxt ""
@@ -1843,7 +1837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "E_xtensions"
-msgstr ""
+msgstr "_Прыстаўкі"
#: startcenter.ui
msgctxt ""
@@ -1861,7 +1855,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent Files List"
-msgstr ""
+msgstr "Спіс нядаўніх файлаў"
#: startcenter.ui
msgctxt ""
@@ -1870,7 +1864,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Templates List"
-msgstr ""
+msgstr "Спіс шаблонаў"
#: templatecategorydlg.ui
msgctxt ""
@@ -1909,14 +1903,13 @@ msgid "None"
msgstr ""
#: templatedlg.ui
-#, fuzzy
msgctxt ""
"templatedlg.ui\n"
"TemplateDialog\n"
"title\n"
"string.text"
msgid "Templates"
-msgstr "Шаблон:"
+msgstr "Шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -1970,7 +1963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Template List"
-msgstr ""
+msgstr "Спіс шаблонаў"
#: templatedlg.ui
msgctxt ""
@@ -1988,7 +1981,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Browse online templates"
-msgstr ""
+msgstr "Аглядаць шаблоны ў сеціве"
#: templatedlg.ui
msgctxt ""
@@ -2015,7 +2008,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Move Templates"
-msgstr ""
+msgstr "Перамясціць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2033,7 +2026,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Export Templates"
-msgstr ""
+msgstr "Экспартаваць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2051,7 +2044,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Import Templates"
-msgstr ""
+msgstr "Імпартаваць шаблоны"
#: templatedlg.ui
msgctxt ""
@@ -2078,7 +2071,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Spreadsheets"
-msgstr ""
+msgstr "Разліковыя аркушы"
#: templatedlg.ui
msgctxt ""
diff --git a/source/be/svl/source/misc.po b/source/be/svl/source/misc.po
index 591fc321972..b16f7457455 100644
--- a/source/be/svl/source/misc.po
+++ b/source/be/svl/source/misc.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\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-07-24 22:52+0300\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2017-03-30 16:11+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490890298.000000\n"
#: mediatyp.src
msgctxt ""
@@ -438,7 +440,7 @@ msgctxt ""
"STR_SVT_MIMETYPE_APP_TEMPLATE\n"
"string.text"
msgid "%PRODUCTNAME Template"
-msgstr "%PRODUCTNAME Template"
+msgstr "Шаблон %PRODUCTNAME"
#: mediatyp.src
msgctxt ""
diff --git a/source/be/svtools/source/dialogs.po b/source/be/svtools/source/dialogs.po
index a24c571f28d..19c8cdc178f 100644
--- a/source/be/svtools/source/dialogs.po
+++ b/source/be/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: dialogs\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"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 18:03+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440525783.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Фарматаваны тэкст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/be/svtools/source/misc.po b/source/be/svtools/source/misc.po
index 71e6f87044c..3321978a369 100644
--- a/source/be/svtools/source/misc.po
+++ b/source/be/svtools/source/misc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: misc\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"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-03-29 13:16+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1490793388.000000\n"
#: imagemgr.src
@@ -3903,6 +3903,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/be/svx/source/stbctrls.po b/source/be/svx/source/stbctrls.po
index 748ab16f74e..59374420506 100644
--- a/source/be/svx/source/stbctrls.po
+++ b/source/be/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: stbctrls\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:51+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-11 18:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1449845510.000000\n"
+"X-POOTLE-MTIME: 1478889081.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/be/svx/uiconfig/ui.po b/source/be/svx/uiconfig/ui.po
index 472f6b15d04..9c56bb91928 100644
--- a/source/be/svx/uiconfig/ui.po
+++ b/source/be/svx/uiconfig/ui.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ui\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-01 12:30+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-04 17:20+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1480595422.000000\n"
+"X-POOTLE-MTIME: 1491326446.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -938,7 +938,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent"
-msgstr ""
+msgstr "Нядаўняе"
#: colorwindow.ui
msgctxt ""
@@ -5154,16 +5154,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
@@ -5226,7 +5226,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Выключыць усе прыстаўкі карыстальніка"
#: safemodedialog.ui
msgctxt ""
@@ -5244,7 +5244,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Extensions"
-msgstr ""
+msgstr "Прыстаўкі"
#: safemodedialog.ui
msgctxt ""
diff --git a/source/be/sw/uiconfig/swriter/ui.po b/source/be/sw/uiconfig/swriter/ui.po
index ea1ecf77ba9..dec38fd4cf0 100644
--- a/source/be/sw/uiconfig/swriter/ui.po
+++ b/source/be/sw/uiconfig/swriter/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ui\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-03-29 13:58+0000\n"
+"PO-Revision-Date: 2017-04-04 17:01+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490795910.000000\n"
+"X-POOTLE-MTIME: 1491325309.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -676,14 +676,13 @@ msgid "_Path..."
msgstr "Шлях..."
#: autotext.ui
-#, fuzzy
msgctxt ""
"autotext.ui\n"
"relfile\n"
"label\n"
"string.text"
msgid "_File system"
-msgstr "Файлавая сістэма"
+msgstr "Ф_айлавая сістэма"
#: autotext.ui
msgctxt ""
@@ -2958,7 +2957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: editsectiondialog.ui
msgctxt ""
@@ -7685,7 +7684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "From a _template"
-msgstr ""
+msgstr "Паводл_е шаблона"
#: mailmergedialog.ui
msgctxt ""
@@ -8777,7 +8776,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start from a t_emplate"
-msgstr ""
+msgstr "Пачаць з шаблона"
#: mmselectpage.ui
msgctxt ""
@@ -8786,7 +8785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Start fro_m a recently saved starting document"
-msgstr ""
+msgstr "Пачаць з нядаўна запісанага пачатковага дакументу"
#: mmselectpage.ui
#, fuzzy
@@ -13226,7 +13225,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: picturepage.ui
msgctxt ""
@@ -14266,7 +14265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File name"
-msgstr "Назва файла"
+msgstr "Назва ф_айла"
#: sectionpage.ui
#, fuzzy
@@ -17484,7 +17483,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_File"
-msgstr ""
+msgstr "Ф_айл"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/be/swext/mediawiki/help.po b/source/be/swext/mediawiki/help.po
index bfb1b39d844..2fb93049b74 100644
--- a/source/be/swext/mediawiki/help.po
+++ b/source/be/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: help\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-03-29 14:02+0000\n"
+"PO-Revision-Date: 2017-04-04 17:08+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796132.000000\n"
+"X-POOTLE-MTIME: 1491325680.000000\n"
#: help.tree
msgctxt ""
@@ -224,7 +224,7 @@ msgctxt ""
"par_id3514206\n"
"help.text"
msgid "Open a Writer document."
-msgstr "Open a Writer document."
+msgstr "Адкрыйце новы дакумент."
#: wiki.xhp
msgctxt ""
diff --git a/source/be/sysui/desktop/share.po b/source/be/sysui/desktop/share.po
index 113e82539d5..e4aa760ba0b 100644
--- a/source/be/sysui/desktop/share.po
+++ b/source/be/sysui/desktop/share.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: share\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: 2015-05-11 23:34+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 17:08+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1431387253.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491325713.000000\n"
#: documents.ulf
msgctxt ""
@@ -389,7 +389,6 @@ msgid "Microsoft Excel Worksheet"
msgstr "Разліковы аркуш Microsoft Excel"
#: launcher_comment.ulf
-#, fuzzy
msgctxt ""
"launcher_comment.ulf\n"
"writer\n"
diff --git a/source/be/uui/source.po b/source/be/uui/source.po
index e5222aa4271..8060cc8580c 100644
--- a/source/be/uui/source.po
+++ b/source/be/uui/source.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: source\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: 2017-03-29 14:07+0000\n"
+"PO-Revision-Date: 2017-04-04 19:30+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796442.000000\n"
+"X-POOTLE-MTIME: 1491334208.000000\n"
#: alreadyopen.src
-#, fuzzy
msgctxt ""
"alreadyopen.src\n"
"STR_ALREADYOPEN_TITLE\n"
@@ -872,7 +871,7 @@ msgctxt ""
"STR_LOCKFAILED_TITLE\n"
"string.text"
msgid "Document Could Not Be Locked"
-msgstr ""
+msgstr "Немагчыма заблакаваць дакумент"
#: lockfailed.src
msgctxt ""
@@ -888,7 +887,7 @@ msgctxt ""
"STR_LOCKFAILED_DONTSHOWAGAIN\n"
"string.text"
msgid "~Do not show this message again"
-msgstr ""
+msgstr "~Больш не паказваць гэта паведамленне"
#: nameclashdlg.src
msgctxt ""
@@ -916,7 +915,7 @@ msgctxt ""
"STR_SAME_NAME_USED\n"
"string.text"
msgid "Please provide a different file name!"
-msgstr ""
+msgstr "Дайце іншую назву файлу!"
#: openlocked.src
msgctxt ""
@@ -947,13 +946,12 @@ msgstr ""
"\n"
#: openlocked.src
-#, fuzzy
msgctxt ""
"openlocked.src\n"
"STR_OPENLOCKED_OPENREADONLY_BTN\n"
"string.text"
msgid "Open ~Read-Only"
-msgstr "Адкрыць толькі для чытання"
+msgstr "Адкрыць толь~кі для чытання"
#: openlocked.src
msgctxt ""
@@ -977,7 +975,7 @@ msgctxt ""
"STR_ENTER_PASSWORD_TO_OPEN\n"
"string.text"
msgid "Enter password to open file: \n"
-msgstr ""
+msgstr "Упішыце пароль, каб адкрыць файл: \n"
#: passworddlg.src
msgctxt ""
@@ -985,7 +983,7 @@ msgctxt ""
"STR_ENTER_PASSWORD_TO_MODIFY\n"
"string.text"
msgid "Enter password to modify file: \n"
-msgstr ""
+msgstr "Упішыце пароль, каб змяніць файл: \n"
#: passworddlg.src
msgctxt ""
@@ -993,7 +991,7 @@ msgctxt ""
"STR_ENTER_SIMPLE_PASSWORD\n"
"string.text"
msgid "Enter password: "
-msgstr ""
+msgstr "Увядзіце пароль:"
#: passworddlg.src
msgctxt ""
@@ -1001,7 +999,7 @@ msgctxt ""
"STR_CONFIRM_SIMPLE_PASSWORD\n"
"string.text"
msgid "Confirm password: "
-msgstr ""
+msgstr "Яшчэ раз пароль:"
#: passworddlg.src
msgctxt ""
@@ -1009,7 +1007,7 @@ msgctxt ""
"STR_TITLE_CREATE_PASSWORD\n"
"string.text"
msgid "Set Password"
-msgstr ""
+msgstr "Задаць пароль"
#: passworddlg.src
msgctxt ""
@@ -1017,7 +1015,7 @@ msgctxt ""
"STR_TITLE_ENTER_PASSWORD\n"
"string.text"
msgid "Enter Password"
-msgstr ""
+msgstr "Увядзіце пароль"
#: passworddlg.src
msgctxt ""
@@ -1025,7 +1023,7 @@ msgctxt ""
"STR_PASSWORD_MISMATCH\n"
"string.text"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
-msgstr ""
+msgstr "Паролі не супадаюць. Задайце пароль ізноў, увёўшы адзін і той жа пароль у абодва палі."
#: passworderrs.src
msgctxt ""
@@ -1068,7 +1066,6 @@ msgid "The password confirmation does not match."
msgstr "Не супадаюць пароль і ягоны паўтор."
#: trylater.src
-#, fuzzy
msgctxt ""
"trylater.src\n"
"STR_TRYLATER_TITLE\n"
@@ -1098,7 +1095,6 @@ msgstr ""
"\n"
#: trylater.src
-#, fuzzy
msgctxt ""
"trylater.src\n"
"STR_TRYLATER_RETRYSAVING_BTN\n"
diff --git a/source/be/uui/uiconfig/ui.po b/source/be/uui/uiconfig/ui.po
index 5496353610c..286a31f767c 100644
--- a/source/be/uui/uiconfig/ui.po
+++ b/source/be/uui/uiconfig/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: ui\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-25 12:14+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-04-04 19:36+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1464178486.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1491334609.000000\n"
#: authfallback.ui
msgctxt ""
@@ -62,14 +62,13 @@ msgid "_Use system credentials"
msgstr ""
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"remember\n"
"label\n"
"string.text"
msgid "_Remember password"
-msgstr "Паўтарыце ўвод пароля:"
+msgstr "Памятаць пароль"
#: logindialog.ui
msgctxt ""
@@ -78,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ccount:"
-msgstr ""
+msgstr "Уліковы запі_с:"
#: logindialog.ui
msgctxt ""
@@ -87,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pass_word:"
-msgstr ""
+msgstr "Пароль:"
#: logindialog.ui
msgctxt ""
@@ -96,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name:"
-msgstr ""
+msgstr "Імя карыстальніка:"
#: logindialog.ui
msgctxt ""
@@ -105,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Path:"
-msgstr ""
+msgstr "_Шлях:"
#: logindialog.ui
msgctxt ""
@@ -114,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "Агляд..."
#: logindialog.ui
msgctxt ""
@@ -176,7 +175,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME - Security Warning"
-msgstr ""
+msgstr "%PRODUCTNAME - папярэджанне пра бяспеку"
#: macrowarnmedium.ui
msgctxt ""
@@ -185,7 +184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Enable Macros"
-msgstr ""
+msgstr "Дазволіць макрасы"
#: macrowarnmedium.ui
msgctxt ""
@@ -194,7 +193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Disable Macros"
-msgstr ""
+msgstr "Не дазваляць макрасы"
#: macrowarnmedium.ui
msgctxt ""
@@ -203,7 +202,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The document contains document macros signed by:"
-msgstr ""
+msgstr "Дакумент утрымлівае макрасы, падпісаныя:"
#: macrowarnmedium.ui
msgctxt ""
@@ -212,7 +211,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The document contains document macros."
-msgstr ""
+msgstr "Дакумент утрымлівае макрасы."
#: macrowarnmedium.ui
msgctxt ""
@@ -221,7 +220,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_View Signatures…"
-msgstr ""
+msgstr "Паказаць подпісы..."
#: macrowarnmedium.ui
msgctxt ""
@@ -239,7 +238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Always trust macros from this source"
-msgstr ""
+msgstr "Заўсёды давяраць макрасам з гэтай крыніцы"
#: masterpassworddlg.ui
msgctxt ""
@@ -266,7 +265,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Set Password"
-msgstr ""
+msgstr "Задаць пароль"
#: setmasterpassworddlg.ui
msgctxt ""
@@ -320,7 +319,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "File Exists"
-msgstr ""
+msgstr "Файл існуе"
#: simplenameclash.ui
msgctxt ""
@@ -329,7 +328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace"
-msgstr ""
+msgstr "Замяніць"
#: simplenameclash.ui
msgctxt ""
@@ -338,7 +337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename"
-msgstr ""
+msgstr "Перайменаваць"
#: sslwarndialog.ui
msgctxt ""
@@ -347,7 +346,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Security Warning: "
-msgstr ""
+msgstr "Папярэджанне бяспекі: "
#: sslwarndialog.ui
msgctxt ""
@@ -356,7 +355,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Continue"
-msgstr ""
+msgstr "Працягнуць"
#: sslwarndialog.ui
msgctxt ""
@@ -365,7 +364,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Cancel Connection"
-msgstr ""
+msgstr "Разарваць злучэнне"
#: sslwarndialog.ui
msgctxt ""
@@ -374,7 +373,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "View Certificate"
-msgstr ""
+msgstr "Паказаць сертыфікат"
#: unknownauthdialog.ui
msgctxt ""
@@ -383,7 +382,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Website Certified by an Unknown Authority"
-msgstr ""
+msgstr "Пляцоўка сертыфікавана невядомым кіраўніцтвам (CA)"
#: unknownauthdialog.ui
msgctxt ""
@@ -392,7 +391,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Accept this certificate temporarily for this session"
-msgstr ""
+msgstr "Прыняць сертыфікат на час гэтага сеансу"
#: unknownauthdialog.ui
msgctxt ""
@@ -401,7 +400,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Do not accept this certificate and do not connect to this Web site"
-msgstr ""
+msgstr "Не прымаць гэты сертыфікат і не далучацца да гэтай пляцоўкі Сеціва"
#: unknownauthdialog.ui
msgctxt ""
@@ -410,4 +409,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Examine Certificate…"
-msgstr ""
+msgstr "Праверыць сертыфікат…"
diff --git a/source/be/vcl/source/src.po b/source/be/vcl/source/src.po
index 0882b81a653..973bdd29547 100644
--- a/source/be/vcl/source/src.po
+++ b/source/be/vcl/source/src.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: src\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 19:16+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462130184.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878864.000000\n"
#: app.src
msgctxt ""
@@ -154,7 +154,7 @@ msgctxt ""
"SV_BUTTONTEXT_HELP\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: btntext.src
#, fuzzy
diff --git a/source/be/wizards/source/euro.po b/source/be/wizards/source/euro.po
index 34eccf5e3b0..9ea778243e2 100644
--- a/source/be/wizards/source/euro.po
+++ b/source/be/wizards/source/euro.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: euro\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: 2015-05-11 23:34+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431387292.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878868.000000\n"
#: euro.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STEP_ZERO + 1\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: euro.src
msgctxt ""
diff --git a/source/be/wizards/source/formwizard.po b/source/be/wizards/source/formwizard.po
index b75b4425873..471bd1b87cc 100644
--- a/source/be/wizards/source/formwizard.po
+++ b/source/be/wizards/source/formwizard.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: formwizard\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: 2017-03-29 14:09+0000\n"
+"PO-Revision-Date: 2017-03-30 16:13+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1490796581.000000\n"
+"X-POOTLE-MTIME: 1490890386.000000\n"
#: dbwizres.src
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"RID_COMMON_START + 15\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: dbwizres.src
msgctxt ""
@@ -263,13 +263,12 @@ msgid "No connection to the database could be established."
msgstr "Не ўдалося наладзіць далучэння да базы даных."
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_COMMON_START + 20\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: dbwizres.src
msgctxt ""
@@ -5258,13 +5257,12 @@ msgid "Make ~manual changes to this agenda template"
msgstr "Зрабіць адвольныя змены ў гэтым шаблоне парадку дня"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +3\n"
"string.text"
msgid "Template name:"
-msgstr "Назва шаблону:"
+msgstr "Назва шаблона:"
#: dbwizres.src
#, fuzzy
@@ -5325,7 +5323,6 @@ msgid "Please select the names you wish to include in your agenda template"
msgstr "Вызначце імёны, якія хочаце ўлучыць у ваш шаблон парадку дня"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_AGENDAWIZARDDIALOG_START +11\n"
diff --git a/source/be/wizards/source/importwizard.po b/source/be/wizards/source/importwizard.po
index 85930498bfd..2dbd4b64e40 100644
--- a/source/be/wizards/source/importwizard.po
+++ b/source/be/wizards/source/importwizard.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: importwizard\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-06-10 10:39+0200\n"
-"PO-Revision-Date: 2013-07-24 22:52+0300\n"
-"Last-Translator: \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: 2017-03-30 13:01+0000\n"
+"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1490878885.000000\n"
#: importwi.src
msgctxt ""
@@ -21,7 +22,7 @@ msgctxt ""
"sHelpButton\n"
"string.text"
msgid "~Help"
-msgstr "Даведка"
+msgstr "~Даведка"
#: importwi.src
msgctxt ""
diff --git a/source/bg/cui/uiconfig/ui.po b/source/bg/cui/uiconfig/ui.po
index 4612b809830..62f6827a123 100644
--- a/source/bg/cui/uiconfig/ui.po
+++ b/source/bg/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-28 12:51+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:33+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: 1488286315.000000\n"
+"X-POOTLE-MTIME: 1492079635.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,8 +185,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "© 2000–2015 сътрудниците на LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "© 2000–2017 сътрудниците на LibreOffice."
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 94c05e6a365..f970a09409b 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-10-13 08:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
@@ -5678,7 +5678,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5686,7 +5686,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 07cb3b6cfd4..212977e16ed 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-12-02 11:16+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
@@ -2454,7 +2454,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bg/sfx2/source/dialog.po b/source/bg/sfx2/source/dialog.po
index 7c2fd45ef52..07ad53d1c8c 100644
--- a/source/bg/sfx2/source/dialog.po
+++ b/source/bg/sfx2/source/dialog.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-22 22:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485122780.000000\n"
#: dialog.src
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Йерархично"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bg/sfx2/uiconfig/ui.po b/source/bg/sfx2/uiconfig/ui.po
index b53b5267072..7209622b471 100644
--- a/source/bg/sfx2/uiconfig/ui.po
+++ b/source/bg/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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:00+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+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: 1485133237.000000\n"
+"X-POOTLE-MTIME: 1492079672.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
"\n"
"Всички споменати запазени и регистрирани марки са собственост на съответните страни.\n"
"\n"
-"© 2000–2016 разработчиците на LibreOffice. Всички права запазени.\n"
+"© 2000–2017 разработчиците на LibreOffice. Всички права запазени.\n"
"\n"
"Продуктът е създаден от %OOOVENDOR на базата на OpenOffice.org, © 2000–2011 Oracle и/или партньорите ѝ. %OOOVENDOR благодари на всички членове на общността, за подробности вижте http://www.libreoffice.org/ ."
diff --git a/source/bg/svtools/source/dialogs.po b/source/bg/svtools/source/dialogs.po
index 0a5df96d4ad..ce38d0ab434 100644
--- a/source/bg/svtools/source/dialogs.po
+++ b/source/bg/svtools/source/dialogs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-09-12 00:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+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: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442017767.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1492079685.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -339,6 +339,14 @@ msgstr "Форматиран текст [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr "Форматиран текст [Richtext]"
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bg/svtools/source/misc.po b/source/bg/svtools/source/misc.po
index a5735c1fa04..1f4d8b5a728 100644
--- a/source/bg/svtools/source/misc.po
+++ b/source/bg/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-01-19 23:33+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-13 10:34+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: 1484868789.000000\n"
+"X-POOTLE-MTIME: 1492079691.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Унгарски (унгарски руни)"
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr "Английски (Малайзия)"
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bg/svx/source/dialog.po b/source/bg/svx/source/dialog.po
index 687017480d0..ab992dec25a 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: 2017-02-16 15:13+0000\n"
+"PO-Revision-Date: 2017-04-13 10:43+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: 1487257986.000000\n"
+"X-POOTLE-MTIME: 1492080220.000000\n"
#: SafeMode.src
msgctxt ""
@@ -1413,7 +1413,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN\n"
"string.text"
msgid "Pattern"
-msgstr ""
+msgstr "Шарка"
#: sdstring.src
msgctxt ""
@@ -1421,7 +1421,7 @@ msgctxt ""
"RID_SVXSTR_PATTERN_UNTITLED\n"
"string.text"
msgid "Untitled Pattern"
-msgstr ""
+msgstr "Шарка без име"
#: sdstring.src
msgctxt ""
@@ -2717,7 +2717,7 @@ msgctxt ""
"RID_SVXSTR_HATCH0\n"
"string.text"
msgid "Black 45 Degrees Wide"
-msgstr ""
+msgstr "Черна, 45 градуса, рядка"
#: sdstring.src
msgctxt ""
@@ -2725,7 +2725,7 @@ msgctxt ""
"RID_SVXSTR_HATCH1\n"
"string.text"
msgid "Black 45 Degrees"
-msgstr ""
+msgstr "Черна, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2733,7 +2733,7 @@ msgctxt ""
"RID_SVXSTR_HATCH2\n"
"string.text"
msgid "Black -45 Degrees"
-msgstr ""
+msgstr "Черна, -45 градуса"
#: sdstring.src
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"RID_SVXSTR_HATCH3\n"
"string.text"
msgid "Black 90 Degrees"
-msgstr ""
+msgstr "Черна, 90 градуса"
#: sdstring.src
msgctxt ""
@@ -2749,7 +2749,7 @@ msgctxt ""
"RID_SVXSTR_HATCH4\n"
"string.text"
msgid "Red Crossed 45 Degrees"
-msgstr ""
+msgstr "Червена, кръстосана, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2757,7 +2757,7 @@ msgctxt ""
"RID_SVXSTR_HATCH5\n"
"string.text"
msgid "Red Crossed 0 Degrees"
-msgstr ""
+msgstr "Червена, кръстосана, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -2765,7 +2765,7 @@ msgctxt ""
"RID_SVXSTR_HATCH6\n"
"string.text"
msgid "Blue Crossed 45 Degrees"
-msgstr ""
+msgstr "Синя, кръстосана, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2773,7 +2773,7 @@ msgctxt ""
"RID_SVXSTR_HATCH7\n"
"string.text"
msgid "Blue Crossed 0 Degrees"
-msgstr ""
+msgstr "Синя, кръстосана, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -2781,7 +2781,7 @@ msgctxt ""
"RID_SVXSTR_HATCH8\n"
"string.text"
msgid "Blue Triple 90 Degrees"
-msgstr ""
+msgstr "Синя, тройна, 45 градуса"
#: sdstring.src
msgctxt ""
@@ -2789,7 +2789,7 @@ msgctxt ""
"RID_SVXSTR_HATCH9\n"
"string.text"
msgid "Black 0 Degrees"
-msgstr ""
+msgstr "Черна, 0 градуса"
#: sdstring.src
msgctxt ""
@@ -3626,7 +3626,7 @@ msgctxt ""
"Extra Small (1/16\")\n"
"itemlist.text"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Съвсем малко (1/16\")"
#: spacing.src
msgctxt ""
@@ -3635,7 +3635,7 @@ msgctxt ""
"Small (1/8\")\n"
"itemlist.text"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Малко (1/8\")"
#: spacing.src
msgctxt ""
@@ -3644,7 +3644,7 @@ msgctxt ""
"Small Medium (1/4\")\n"
"itemlist.text"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Средно малко (1/4\")"
#: spacing.src
msgctxt ""
@@ -3653,7 +3653,7 @@ msgctxt ""
"Medium (3/8\")\n"
"itemlist.text"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Средно (3/8\")"
#: spacing.src
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"Medium Large (1/2\")\n"
"itemlist.text"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Средно голямо (1/2\")"
#: spacing.src
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"Large (3/4\")\n"
"itemlist.text"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Голямо (3/4\")"
#: spacing.src
msgctxt ""
@@ -3680,7 +3680,7 @@ msgctxt ""
"Extra Large (1\")\n"
"itemlist.text"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Много голямо (1\")"
#: srchdlg.src
msgctxt ""
diff --git a/source/bg/svx/source/stbctrls.po b/source/bg/svx/source/stbctrls.po
index 97b3776864f..d04723a7308 100644
--- a/source/bg/svx/source/stbctrls.po
+++ b/source/bg/svx/source/stbctrls.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-09 14:10+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\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"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1487258083.000000\n"
#: stbctrls.src
@@ -152,6 +152,14 @@ msgstr "Побиране на кадъра в текущия прозорец."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bg/svx/uiconfig/ui.po b/source/bg/svx/uiconfig/ui.po
index 3f977290ddf..0191103beb3 100644
--- a/source/bg/svx/uiconfig/ui.po
+++ b/source/bg/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2017-01-23 01:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1485133562.000000\n"
#: acceptrejectchangesdialog.ui
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bn-IN/cui/uiconfig/ui.po b/source/bn-IN/cui/uiconfig/ui.po
index 454a0758dfd..a692cbc4846 100644
--- a/source/bn-IN/cui/uiconfig/ui.po
+++ b/source/bn-IN/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:49+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn_IN\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: 1476794955.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593260.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME একটি আধুনিক ও সহজে ব্যবহারযোগ্য ওপেন-সোর্স প্রডাক্টিভিটি স্যুট যার সাহায্যে ওয়ার্ড প্রসেসর, স্প্রেড-শিট, উপস্থাপনা ইত্যাদি প্রস্তুত করা যাবে।"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "কপিরাইট © 2000 - 2014 LibreOffice অবদানকারী।"
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 64a04abafc9..2c0a2c79ec5 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-11-25 08:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "ফাংশন"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 877b47be32c..0dfb3c2e10f 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bn-IN/sfx2/source/dialog.po b/source/bn-IN/sfx2/source/dialog.po
index c7c47ed4fae..007e011dee5 100644
--- a/source/bn-IN/sfx2/source/dialog.po
+++ b/source/bn-IN/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
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 17:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467654347.000000\n"
+"X-POOTLE-MTIME: 1478950830.000000\n"
#: dialog.src
msgctxt ""
@@ -724,6 +724,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bn-IN/sfx2/uiconfig/ui.po b/source/bn-IN/sfx2/uiconfig/ui.po
index e8a13f73c78..54442666614 100644
--- a/source/bn-IN/sfx2/uiconfig/ui.po
+++ b/source/bn-IN/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 17:46+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn_IN\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: 1467654386.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480595791.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -784,7 +784,6 @@ msgid "_Show License"
msgstr "লাইসেন্স প্রদর্শন (_S)"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -797,19 +796,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Mozilla পাবলিক লাইসেন্স, v. 2.0 -এর অংশ হিসাবে %PRODUCTNAME উপলব্ধ করানো হয়েছে। MPL -এর একটি অনুলিপি http://mozilla.org/MPL/2.0/ -এ পেতে যেতে পারবেন।\n"
-"\n"
-"তৃতীয় পক্ষ কোড অতিরিক্ত কপিরাইট বিজ্ঞপ্তি এবং লাইসেন্স শর্তাদি LICENSE.html ফাইলে উল্লিখিত সফ্টওয়্যারের অংশে প্রযোজ্য; সঠিক বিস্তারিতটি ইংরাজিতে দেখতে, লাইসেন্স দেখান বাছুন।\n"
-"\n"
-"এখানে উল্লিখিত সমস্ত ট্রেডমার্ক এবং নিবন্ধিত ট্রেডমার্ক তাদের সংশ্লিষ্ট মালিকদের।\n"
-"\n"
-"কপিরাইট © 2000, 2014 LibreOffice কন্ট্রিবিউটর। সকল অধিকার সংরক্ষিত।\n"
-"\n"
-"এই প্রোডাক্টটি তৈরি করেছে %OOOVENDOR, OpenOffice.org -এর উপরে ভিত্তি করে, যা 2000, 2011 Oracle এবং/অথবা তার অধীনস্তের কপিরাইট। %OOOVENDOR সকল কমিউনিটি সদস্যদের স্বীকৃতি দেয়, বিস্তারিত জানতে দয়া করে http://www.libreoffice.org/ দেখুন।"
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/bn-IN/svtools/source/dialogs.po b/source/bn-IN/svtools/source/dialogs.po
index 0a1f5bc63c7..7a1c8024eb3 100644
--- a/source/bn-IN/svtools/source/dialogs.po
+++ b/source/bn-IN/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ msgid ""
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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 19:05+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\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-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
"X-POOTLE-MTIME: 1440529551.000000\n"
@@ -340,6 +340,14 @@ msgstr "বিন্যাসিত লেখা [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bn-IN/svtools/source/misc.po b/source/bn-IN/svtools/source/misc.po
index 9d95683f8d3..4ed8961960c 100644
--- a/source/bn-IN/svtools/source/misc.po
+++ b/source/bn-IN/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
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 17:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467654601.000000\n"
+"X-POOTLE-MTIME: 1478951589.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bn-IN/svx/source/stbctrls.po b/source/bn-IN/svx/source/stbctrls.po
index 956c9cc22c9..fed491cf9cc 100644
--- a/source/bn-IN/svx/source/stbctrls.po
+++ b/source/bn-IN/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:52+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467654755.000000\n"
+"X-POOTLE-MTIME: 1478952573.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "স্লাইড বর্তমান উইন্ডোতে ধর
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bn-IN/svx/uiconfig/ui.po b/source/bn-IN/svx/uiconfig/ui.po
index e19c0d68a53..b5490b6409d 100644
--- a/source/bn-IN/svx/uiconfig/ui.po
+++ b/source/bn-IN/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5093,16 +5093,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bn/cui/uiconfig/ui.po b/source/bn/cui/uiconfig/ui.po
index edaefe908fb..d4167d3e981 100644
--- a/source/bn/cui/uiconfig/ui.po
+++ b/source/bn/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:42+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\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: 1476794562.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593092.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 350ddccabb3..82504f60468 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5715,22 +5715,20 @@ msgid "Functions"
msgstr "ফাংশন"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 6f13f3f6058..f04523a7b23 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 17:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bn/sfx2/source/dialog.po b/source/bn/sfx2/source/dialog.po
index 5b64f9b5712..1163f375ef7 100644
--- a/source/bn/sfx2/source/dialog.po
+++ b/source/bn/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:19+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 08:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467652744.000000\n"
+"X-POOTLE-MTIME: 1478939685.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/bn/sfx2/uiconfig/ui.po b/source/bn/sfx2/uiconfig/ui.po
index 34c4931e33a..e16bfefd454 100644
--- a/source/bn/sfx2/uiconfig/ui.po
+++ b/source/bn/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 17:23+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bn\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: 1467652994.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594677.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/bn/svtools/source/dialogs.po b/source/bn/svtools/source/dialogs.po
index 4a6a44f79c1..2cd06b4c3e3 100644
--- a/source/bn/svtools/source/dialogs.po
+++ b/source/bn/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 17:57+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\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-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
"X-POOTLE-MTIME: 1440525439.000000\n"
@@ -340,6 +340,14 @@ msgstr "বিন্যাসিত লেখা [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bn/svtools/source/misc.po b/source/bn/svtools/source/misc.po
index 06f04dadf56..c76d74af36c 100644
--- a/source/bn/svtools/source/misc.po
+++ b/source/bn/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:27+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 08:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1467653269.000000\n"
+"X-POOTLE-MTIME: 1478940569.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3899,6 +3899,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bn/svx/source/stbctrls.po b/source/bn/svx/source/stbctrls.po
index 999d110acaa..1a749042b09 100644
--- a/source/bn/svx/source/stbctrls.po
+++ b/source/bn/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 17:32+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467653523.000000\n"
+"X-POOTLE-MTIME: 1478941801.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bn/svx/uiconfig/ui.po b/source/bn/svx/uiconfig/ui.po
index 2be094d561c..b724ffa93fe 100644
--- a/source/bn/svx/uiconfig/ui.po
+++ b/source/bn/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bo/cui/uiconfig/ui.po b/source/bo/cui/uiconfig/ui.po
index aff91e72684..8eedac73a1c 100644
--- a/source/bo/cui/uiconfig/ui.po
+++ b/source/bo/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 12:41+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\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: 1476794487.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480593048.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index 84a88b25dc9..51960614e0d 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5719,7 +5719,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
msgstr ""
#: 04060102.xhp
@@ -5727,7 +5727,7 @@ msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
msgstr ""
#: 04060103.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 5d662ae57be..5ee51748ebe 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2455,7 +2455,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bo/sfx2/source/dialog.po b/source/bo/sfx2/source/dialog.po
index 5d7b455fb24..e4a07ae8dd6 100644
--- a/source/bo/sfx2/source/dialog.po
+++ b/source/bo/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:16+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656203.000000\n"
+"X-POOTLE-MTIME: 1478941881.000000\n"
#: dialog.src
msgctxt ""
@@ -731,6 +731,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "རིམ་པ་སྒྲིག་སྟངས།"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/bo/sfx2/uiconfig/ui.po b/source/bo/sfx2/uiconfig/ui.po
index c1285f6b506..855faa70d6b 100644
--- a/source/bo/sfx2/uiconfig/ui.po
+++ b/source/bo/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 18:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bo\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: 1467656303.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594689.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -795,7 +795,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/bo/svtools/source/dialogs.po b/source/bo/svtools/source/dialogs.po
index 224720a9193..38a2f3a394e 100644
--- a/source/bo/svtools/source/dialogs.po
+++ b/source/bo/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 17:38+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440524313.000000\n"
#: addresstemplate.src
@@ -346,6 +346,14 @@ msgstr "བཅད་སྒྲིག་ཟིན་པའི་ཡི་གེ་
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bo/svtools/source/misc.po b/source/bo/svtools/source/misc.po
index 6abd564dfdf..3657b6c169b 100644
--- a/source/bo/svtools/source/misc.po
+++ b/source/bo/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:24+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656671.000000\n"
+"X-POOTLE-MTIME: 1478942651.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3905,6 +3905,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/bo/svx/source/stbctrls.po b/source/bo/svx/source/stbctrls.po
index 5db69ef45c1..2c69143b1c6 100644
--- a/source/bo/svx/source/stbctrls.po
+++ b/source/bo/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:28+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 09:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656884.000000\n"
+"X-POOTLE-MTIME: 1478943934.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,6 +155,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bo/svx/uiconfig/ui.po b/source/bo/svx/uiconfig/ui.po
index 29898c09477..9815966e1ef 100644
--- a/source/bo/svx/uiconfig/ui.po
+++ b/source/bo/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5058,16 +5058,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/br/cui/uiconfig/ui.po b/source/br/cui/uiconfig/ui.po
index 3d09a510079..8e62d711f7b 100644
--- a/source/br/cui/uiconfig/ui.po
+++ b/source/br/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-03-22 09:50+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2017-04-18 08:24+0000\n"
"Last-Translator: Tornoz <tornoz@laposte.net>\n"
"Language-Team: none\n"
"Language: br\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: 1490176227.000000\n"
+"X-POOTLE-MTIME: 1492503871.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,8 +184,8 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Copyright © 2000 - 2016 Perzhiaded LibreOffice."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr "Copyright © 2000 - 2017 Perzhiaded LibreOffice."
#: aboutdialog.ui
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Barrennigoù"
#: areatabpage.ui
msgctxt ""
@@ -6161,7 +6161,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hatch"
-msgstr ""
+msgstr "Barrennigoù"
#: hatchpage.ui
msgctxt ""
@@ -7980,7 +7980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Style"
-msgstr ""
+msgstr "Stil"
#: menuassignpage.ui
msgctxt ""
@@ -7989,7 +7989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons & Text"
-msgstr ""
+msgstr "Arlunioù ha testenn"
#: menuassignpage.ui
msgctxt ""
@@ -7998,7 +7998,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Icons"
-msgstr ""
+msgstr "Arlunioù"
#: menuassignpage.ui
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text"
-msgstr ""
+msgstr "Testenn"
#: menuassignpage.ui
msgctxt ""
@@ -8061,7 +8061,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset"
-msgstr ""
+msgstr "Adderaouekaat"
#: menuassignpage.ui
msgctxt ""
@@ -8079,7 +8079,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remove"
-msgstr ""
+msgstr "Lemel kuit"
#: menuassignpage.ui
msgctxt ""
@@ -8088,7 +8088,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Command"
-msgstr ""
+msgstr "Ouzhpennañ un arc'had"
#: menuassignpage.ui
msgctxt ""
@@ -8097,7 +8097,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Separator"
-msgstr ""
+msgstr "Ouzhpennañ un dispartier"
#: menuassignpage.ui
msgctxt ""
@@ -8106,7 +8106,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Submenu"
-msgstr ""
+msgstr "Ouzhpennañ un islañser"
#: menuassignpage.ui
msgctxt ""
@@ -8466,7 +8466,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Den_ominator places:"
-msgstr ""
+msgstr "Sifroù en anver:"
#: numberingformatpage.ui
msgctxt ""
@@ -9267,7 +9267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tab stop at:"
-msgstr ""
+msgstr "Taolennata da:"
#: numberingpositionpage.ui
msgctxt ""
@@ -10036,7 +10036,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Arabic (1, 2, 3…)"
-msgstr ""
+msgstr "Arabeg (1, 2,3…)"
#: optctlpage.ui
msgctxt ""
@@ -10045,7 +10045,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Eastern Arabic (٣ ,٢ ,١…)"
-msgstr ""
+msgstr "Arabeg ar sav-heol (٣ ,٢ ,١…)"
#: optctlpage.ui
msgctxt ""
@@ -11026,7 +11026,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit Available language modules"
-msgstr ""
+msgstr "Embann ar molladoù yezh hegerz"
#: optlingupage.ui
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Edit User-defined dictionaries"
-msgstr ""
+msgstr "Embann geriadurioù an arveriad"
#: optlingupage.ui
msgctxt ""
diff --git a/source/br/sfx2/source/dialog.po b/source/br/sfx2/source/dialog.po
index b57b2ae3141..7915724bece 100644
--- a/source/br/sfx2/source/dialog.po
+++ b/source/br/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657119.000000\n"
+"X-POOTLE-MTIME: 1478955676.000000\n"
#: dialog.src
msgctxt ""
@@ -723,6 +723,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Urzhaz"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/br/sfx2/uiconfig/ui.po b/source/br/sfx2/uiconfig/ui.po
index d4bbadfd0ef..5fecf977689 100644
--- a/source/br/sfx2/uiconfig/ui.po
+++ b/source/br/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-17 14:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: br\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: 1468765209.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480598574.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,19 +794,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"Da hegerz eo bet lakaet %PRODUCTNAME dre dermenoù al Lañvaz foran Hollek e live izeloc'h GNU, handelv 2.0. Kavet e vez un eilad eus al lañvaz mod MLP e http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Menegoù diwar-benn gwirioù ar voneg savet gant trede strolladoù ha diwar-benn termenoù al lañvaz a c'hell bezañ arloet da lodennoù ar meziant a vez displeget er restr LICENSE.html ; dibabit Diskouez al Lañvaz evit gwelout ar munudoù e saozneg.\n"
-"\n"
-"An holl verkoù kenwerzhel hag ar merkoù marilhet zo d'o ferc'hennerion dezho.\n"
-"\n"
-"Copyright © 2000, 2016 perzhiaded LibreOffice. Pep gwir miret strizh.\n"
-"\n"
-"Krouet eo bet ar meziant-mañ gant %OOOVENDOR, diazezet war OpenOffice.org, a zo gant Copyright Oracle 2000, 2011 hag he stalioù mibion. %OOOVENDOR a drugareka izili holl ar gumuniezh, lennit http://www.libreoffice.org/ evit gouzout hiroc'h."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/br/svtools/source/dialogs.po b/source/br/svtools/source/dialogs.po
index 2bd574f6196..b4ddcf2581b 100644
--- a/source/br/svtools/source/dialogs.po
+++ b/source/br/svtools/source/dialogs.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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-10-16 17:10+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,8 +12,8 @@ msgstr ""
"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-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1445015459.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Testenn mentrezhet [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/br/svtools/source/misc.po b/source/br/svtools/source/misc.po
index f9e0ed62420..9852ba7e668 100644
--- a/source/br/svtools/source/misc.po
+++ b/source/br/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:41+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657685.000000\n"
+"X-POOTLE-MTIME: 1478956584.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3887,6 +3887,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/br/svx/source/stbctrls.po b/source/br/svx/source/stbctrls.po
index 7c216091a4b..d13ed265c8e 100644
--- a/source/br/svx/source/stbctrls.po
+++ b/source/br/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:45+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657917.000000\n"
+"X-POOTLE-MTIME: 1478958031.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr "Lakaat an dreyonenn da genglotañ gant ar prenestr oberiant."
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/br/svx/uiconfig/ui.po b/source/br/svx/uiconfig/ui.po
index e516145f8e1..8b528756d9d 100644
--- a/source/br/svx/uiconfig/ui.po
+++ b/source/br/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5075,16 +5075,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/brx/cui/uiconfig/ui.po b/source/brx/cui/uiconfig/ui.po
index a918b1e5b47..6ec78420854 100644
--- a/source/brx/cui/uiconfig/ui.po
+++ b/source/brx/cui/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
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-18 12:58+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476795493.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594567.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -184,7 +184,7 @@ msgctxt ""
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
msgstr ""
#: aboutdialog.ui
diff --git a/source/brx/sfx2/source/dialog.po b/source/brx/sfx2/source/dialog.po
index b2a5d206a08..2f40bde7019 100644
--- a/source/brx/sfx2/source/dialog.po
+++ b/source/brx/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:18+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 10:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656314.000000\n"
+"X-POOTLE-MTIME: 1478947789.000000\n"
#: dialog.src
msgctxt ""
@@ -720,6 +720,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "हायरार्चिकेल"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
#, fuzzy
msgctxt ""
diff --git a/source/brx/sfx2/uiconfig/ui.po b/source/brx/sfx2/uiconfig/ui.po
index 67c78ef5abb..82ea94f8a13 100644
--- a/source/brx/sfx2/uiconfig/ui.po
+++ b/source/brx/sfx2/uiconfig/ui.po
@@ -3,17 +3,17 @@ msgid ""
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-07-04 18:20+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656429.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480596308.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -794,7 +794,7 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
diff --git a/source/brx/svtools/source/dialogs.po b/source/brx/svtools/source/dialogs.po
index 01a32085fc3..79526ed8f9c 100644
--- a/source/brx/svtools/source/dialogs.po
+++ b/source/brx/svtools/source/dialogs.po
@@ -3,16 +3,16 @@ 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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 18:17+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440526649.000000\n"
#: addresstemplate.src
@@ -338,6 +338,14 @@ msgstr "दाथाय दानाय फराय बिजाब (RTF)"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/brx/svtools/source/misc.po b/source/brx/svtools/source/misc.po
index 7ca8d61c36c..98fb146ef41 100644
--- a/source/brx/svtools/source/misc.po
+++ b/source/brx/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-05-08 09:04+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1462698260.000000\n"
+"X-POOTLE-MTIME: 1478948583.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3913,6 +3913,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
#, fuzzy
msgctxt ""
diff --git a/source/brx/svx/source/stbctrls.po b/source/brx/svx/source/stbctrls.po
index 1fce09d429f..16a846d2609 100644
--- a/source/brx/svx/source/stbctrls.po
+++ b/source/brx/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:29+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 11:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656942.000000\n"
+"X-POOTLE-MTIME: 1478949660.000000\n"
#: stbctrls.src
msgctxt ""
@@ -153,6 +153,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/brx/svx/uiconfig/ui.po b/source/brx/svx/uiconfig/ui.po
index 1c96249eadb..f801e5f9dc9 100644
--- a/source/brx/svx/uiconfig/ui.po
+++ b/source/brx/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5057,16 +5057,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/bs/cui/uiconfig/ui.po b/source/bs/cui/uiconfig/ui.po
index 982bc5514b8..06d1824f633 100644
--- a/source/bs/cui/uiconfig/ui.po
+++ b/source/bs/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-18 13:02+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 12:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1476795775.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480594815.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME je moderan, jednostavan za korištenje, paket produktivnosti otvorenog izvornog koda za obradu teksta, radnih listova, prezentacija i više."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
-msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Autorsko pravo © 2000 - 2014 LibreOffice doprinosioci."
+msgid "Copyright © 2000–2017 LibreOffice contributors."
+msgstr ""
#: aboutdialog.ui
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index 372a766b176..711c6f74acd 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-10 23:39+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-22 16:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5699,22 +5699,20 @@ msgid "Functions"
msgstr "Funkcije"
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020162315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_networkdays.intl.xhp#networkdaysintl\"/>"
+msgstr ""
#: 04060102.xhp
-#, fuzzy
msgctxt ""
"04060102.xhp\n"
"par_id231020163315043955\n"
"help.text"
-msgid "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
-msgstr "<embed href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgid "<embedvar href=\"text/scalc/01/func_workdays.intl.xhp#workdaysintl\"/>"
+msgstr ""
#: 04060103.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 6c7c41f5963..cf93fced323 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-27 21:50+0100\n"
+"POT-Creation-Date: 2017-04-11 22:27+0200\n"
"PO-Revision-Date: 2016-07-05 16:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2453,7 +2453,7 @@ msgctxt ""
"01010500.xhp\n"
"hd_id3154754\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link><ahelp hid=\"cui/ui/colorpage/edit\"><embed href=\"text/shared/optionen/01010501.xhp#farbentext\"/></ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Pick\">Pick</link>"
msgstr ""
#: 01010501.xhp
diff --git a/source/bs/sfx2/source/dialog.po b/source/bs/sfx2/source/dialog.po
index 8e207280ace..ec2b8186ee0 100644
--- a/source/bs/sfx2/source/dialog.po
+++ b/source/bs/sfx2/source/dialog.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:21+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 22:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467656518.000000\n"
+"X-POOTLE-MTIME: 1478989781.000000\n"
#: dialog.src
msgctxt ""
@@ -722,6 +722,30 @@ msgctxt ""
msgid "Hierarchical"
msgstr "Hijerarhijski"
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_FILL_FORMAT_MODE\n"
+"string.text"
+msgid "Fill Format Mode"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_NEW_STYLE_FROM_SELECTION\n"
+"string.text"
+msgid "New Style from Selection"
+msgstr ""
+
+#: templdlg.src
+msgctxt ""
+"templdlg.src\n"
+"STR_STYLE_UPDATE_STYLE\n"
+"string.text"
+msgid "Update Style"
+msgstr ""
+
#: versdlg.src
msgctxt ""
"versdlg.src\n"
diff --git a/source/bs/sfx2/uiconfig/ui.po b/source/bs/sfx2/uiconfig/ui.po
index eb53c665daf..7598caafdb8 100644
--- a/source/bs/sfx2/uiconfig/ui.po
+++ b/source/bs/sfx2/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid ""
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-07-04 18:25+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: none\n"
"Language: bs\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%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1467656710.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1480597431.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -791,7 +791,6 @@ msgid "_Show License"
msgstr "_Prikaži licencu"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -804,19 +803,10 @@ msgid ""
"\n"
"All trademarks and registered trademarks mentioned herein are the property of their respective owners.\n"
"\n"
-"Copyright © 2000–2016 LibreOffice contributors. All rights reserved.\n"
+"Copyright © 2000–2017 LibreOffice contributors. All rights reserved.\n"
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
-"%PRODUCTNAME je dostupan u skladu sa uslovima Mozilla Public License, v. 2.0. Kopija MPL licence može se naći na http://mozilla.org/MPL/2.0/.\n"
-"\n"
-"Treća dio Koda Dodatne napomene o autorskim pravima i uslove licenciranja primjenjene na dijelove Softvera su utvrđene u LICENSE.html datoteke, odaberite Pregled Licence za vidjeti tačne informacije na engleskom jeziku.\n"
-"\n"
-"Svi zaštitni znakovi i registrirani zaštitni znakovi navedeni u ovom dokumentu su vlasništvo njihovih autora.\n"
-"\n"
-"Copyright © 2000, 2013 LibreOffice saradnika i / ili njihovih podružnica. Sva prava pridržana.\n"
-"\n"
-"Ovaj proizvod je stvoren %OOOVENDOR, na osnovu OpenOffice.org, koji je Copyright 2000, 2011 Oracle i / ili njenih podružnica. %OOOVENDOR potvrđuje sve članove zajednice, pogledajte http://www.libreoffice.org/ za više detalja."
#: linkeditdialog.ui
msgctxt ""
diff --git a/source/bs/svtools/source/dialogs.po b/source/bs/svtools/source/dialogs.po
index 36d065a730d..2ceafb410b6 100644
--- a/source/bs/svtools/source/dialogs.po
+++ b/source/bs/svtools/source/dialogs.po
@@ -3,17 +3,17 @@ 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: 2015-08-25 12:33+0200\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2015-08-25 20:42+0000\n"
-"Last-Translator: system user <>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1440535321.000000\n"
#: addresstemplate.src
@@ -339,6 +339,14 @@ msgstr "Formatirani tekst [RTF]"
#: formats.src
msgctxt ""
"formats.src\n"
+"STR_FORMAT_ID_RICHTEXT\n"
+"string.text"
+msgid "Formatted text [Richtext]"
+msgstr ""
+
+#: formats.src
+msgctxt ""
+"formats.src\n"
"STR_FORMAT_ID_DRAWING\n"
"string.text"
msgid "Drawing format"
diff --git a/source/bs/svtools/source/misc.po b/source/bs/svtools/source/misc.po
index 39d883ed4d0..98c41bf0d39 100644
--- a/source/bs/svtools/source/misc.po
+++ b/source/bs/svtools/source/misc.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:31+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 22:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657091.000000\n"
+"X-POOTLE-MTIME: 1478990803.000000\n"
#: imagemgr.src
msgctxt ""
@@ -3892,6 +3892,15 @@ msgctxt ""
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
+#: langtab.src
+msgctxt ""
+"langtab.src\n"
+"STR_ARR_SVT_LANGUAGE_TABLE\n"
+"LANGUAGE_ENGLISH_MALAYSIA\n"
+"pairedlist.text"
+msgid "English (Malaysia)"
+msgstr ""
+
#: svtools.src
msgctxt ""
"svtools.src\n"
diff --git a/source/bs/svx/source/stbctrls.po b/source/bs/svx/source/stbctrls.po
index b84725163b7..c364eecef8e 100644
--- a/source/bs/svx/source/stbctrls.po
+++ b/source/bs/svx/source/stbctrls.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2016-07-04 18:34+0000\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
+"PO-Revision-Date: 2016-11-12 23:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1467657298.000000\n"
+"X-POOTLE-MTIME: 1478992290.000000\n"
#: stbctrls.src
msgctxt ""
@@ -152,6 +152,14 @@ msgstr ""
#: stbctrls.src
msgctxt ""
"stbctrls.src\n"
+"RID_SVXSTR_WARN_MISSING_SMARTART\n"
+"string.text"
+msgid "Could not load all SmartArts. Saving in Microsoft Office 2010 or later would avoid this issue."
+msgstr ""
+
+#: stbctrls.src
+msgctxt ""
+"stbctrls.src\n"
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
diff --git a/source/bs/svx/uiconfig/ui.po b/source/bs/svx/uiconfig/ui.po
index a7c8beee4eb..0caca6c7dfe 100644
--- a/source/bs/svx/uiconfig/ui.po
+++ b/source/bs/svx/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-12-21 15:38+0100\n"
+"POT-Creation-Date: 2017-04-11 22:26+0200\n"
"PO-Revision-Date: 2016-12-01 13:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5105,16 +5105,16 @@ msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_quit\n"
+"btn_restart\n"
"label\n"
"string.text"
-msgid "_Quit"
+msgid "_Restart in Normal Mode"
msgstr ""
#: safemodedialog.ui
msgctxt ""
"safemodedialog.ui\n"
-"btn_restart\n"
+"btn_apply\n"
"label\n"
"string.text"
msgid "_Apply Changes and Restart"
diff --git a/source/ca-valencia/cui/uiconfig/ui.po b/source/ca-valencia/cui/uiconfig/ui.po
index f01c3f3234f..6f496bec6aa 100644
--- a/source/ca-valencia/cui/uiconfig/ui.po
+++ b/source/ca-valencia/cui/uiconfig/ui.po